File size: 287 Bytes
3fb154b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM python:3.11-slim
# HF Spaces runs as a non-root user; make sure /tmp is writable (it always is)
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
# HF Spaces expects the app on port 7860
EXPOSE 7860
CMD ["python", "main.py"] |