hotspot / Dockerfile
mbonea-ewallet godwin
--host 0.0.0.0 to fastAPI
df84761
raw
history blame
151 Bytes
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
EXPOSE 8000