mirror of
https://github.com/philip306/countapi.git
synced 2024-06-15 10:55:23 +03:00
5 lines
142 B
Docker
5 lines
142 B
Docker
FROM python:3.7
|
|
RUN pip install fastapi uvicorn
|
|
EXPOSE 80
|
|
COPY ./app /app
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] |