mirror of
https://github.com/more-tech4-magnum-opus/telegram-chat-creation.git
synced 2024-11-10 18:26:33 +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
|