vps / Dockerfile
vortexa64's picture
Update Dockerfile
7b82efc verified
raw
history blame contribute delete
161 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install fastapi uvicorn python-multipart
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]