Spaces:
Sleeping
Sleeping
File size: 316 Bytes
f0a4b63 9f03b39 f0a4b63 9f03b39 f0a4b63 9f03b39 f0a4b63 9f03b39 f0a4b63 9f03b39 f0a4b63 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.9-slim
WORKDIR /code
# Copy backend files
COPY ./backend /code/backend
# Change working directory to backend
WORKDIR /code/backend
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Run the application
CMD ["uvicorn", "src.api:app", "--host", "0.0.0.0", "--port", "7860"]
|