Files
Tg-bot/bot.0.1/Dockerfile-old-pillow
2024-10-29 16:09:13 +03:00

18 lines
225 B
Plaintext
Executable File

FROM python:3.10-alpine
RUN adduser -D bot
USER bot
WORKDIR /usr/bot
COPY requirements.txt .
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "telegram_bot.py"]