Spaces:
Running
Running
| FROM python:3.11-slim | |
| WORKDIR /app | |
| # Copy your code and resources | |
| COPY . . | |
| # Install dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Expose the HF default port | |
| EXPOSE 7860 | |
| # Run the server on port 7860 | |
| CMD ["python", "server.py", "--port", "7860"] |