mirror of
https://github.com/more-tech4-magnum-opus/telegram-chat-creation.git
synced 2024-12-04 20:53:43 +03:00
7 lines
167 B
Docker
7 lines
167 B
Docker
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
|