Spaces:
Running
Running
File size: 405 Bytes
e6f5f64 a5a80dd e6f5f64 a5a80dd e6f5f64 a5a80dd e6f5f64 a5a80dd e6f5f64 a5a80dd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Python 3.10 (slim) as base
FROM python:3.10-slim
# THhis is the working directory of the container
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the entire application code into the container
COPY . .
# Run the FastAPI application using uvicorn on all interfaces at port 7860
CMD ["uvicorn", "backend.app:app", "--host", "0.0.0.0", "--port", "7860"] |