hotspot / Dockerfile
mbonea-ewallet godwin
formatted and added 4 workers
68ce4db
raw
history blame
163 Bytes
FROM python:3.8.13
WORKDIR /usr/src/nginx
COPY . .
RUN python3 -m pip install -r requirements.txt
CMD gunicorn main:app --workers 4 --host 0.0.0.0
EXPOSE 8000