File size: 317 Bytes
33c81df 237a4ea 33c81df 237a4ea 33c81df 237a4ea 33c81df 237a4ea 33c81df 237a4ea 33c81df 237a4ea | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Base image
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy project files
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose HF Spaces expected port
EXPOSE 7860
# Run FastAPI server
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]
|