H / Dockerfile
Maxenoz's picture
Update Dockerfile
33c81df verified
raw
history blame contribute delete
317 Bytes
# 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"]