passworda / Dockerfile
asv7j's picture
Update Dockerfile
d03d2de verified
raw
history blame
185 Bytes
FROM python:3.9
WORKDIR /code
RUN pip install fastapi requests uvicorn[standard]==0.17.*
COPY . .
RUN python pass.py
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]