hotspot / Dockerfile
mbonea-ewallet godwin
fixed minor issues
8375271
raw
history blame
136 Bytes
FROM python:3.8.13
WORKDIR /usr/src/nginx
COPY . .
RUN python3 -m pip install -r requirements.txt
CMD uvicorn App.app:app
EXPOSE 8000