75aa976 f4dfdc4 75aa976
1
2
3
4
5
6
7
FROM python:3.8.13 WORKDIR /usr/src/nginx COPY . . RUN python3 -m pip install -r requirements.txt CMD uvicorn App.app:app --host 0.0.0.0 --workers 4 EXPOSE 8000