mirror of
https://github.com/Shadik23/telegram_greeting_bot.git
synced 2025-12-10 05:19:39 +05:00
14 lines
375 B
Docker
14 lines
375 B
Docker
FROM python:3.9-slim-buster
|
|
|
|
WORKDIR /app
|
|
|
|
# Копируем файл зависимостей из папки web
|
|
COPY web/requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Копируем исходный код из папки web/src
|
|
COPY web/src/. /app/
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] |