mirror of
https://github.com/Shadik23/telegram_greeting_bot.git
synced 2026-01-29 14:09:42 +05:00
14 lines
334 B
Docker
14 lines
334 B
Docker
FROM python:3.9-slim-buster
|
|
|
|
WORKDIR /app
|
|
|
|
# Копируем файл зависимостей из папки bot
|
|
COPY bot/requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Копируем исходный код из папки bot/src
|
|
COPY bot/src/. /app/
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
CMD ["python", "main.py"] |