MaksimNeldner's picture
Add Telegram bot files
d754d98 verified
Raw
History Blame Contribute Delete
323 Bytes
FROM python:3.11-slim
ENV PYTHONUNBUFFERED=1
ENV PIP_NO_CACHE_DIR=1
ENV PORT=7860
WORKDIR /app
RUN apt-get update && apt-get install -y \
git \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install -U pip && pip install -r requirements.txt
COPY bot.py .
EXPOSE 7860
CMD ["python", "bot.py"]