telegram-chat-creation/Dockerfile

7 lines
167 B
Docker
Raw Normal View History

2022-10-08 09:54:50 +03:00
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
COPY ./app /app