countapi/Dockerfile

5 lines
142 B
Docker
Raw Normal View History

2020-07-30 16:28:42 +03:00
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"]