test / Dockerfile
Jaykay73's picture
Create Dockerfile
04c5861 verified
raw
history blame contribute delete
139 Bytes
FROM python:3.11-slim
RUN pip install fastapi uvicorn
COPY app.py /app.py
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]