Spaces:
Running
Running
File size: 406 Bytes
c2b5924 a9425db 2932ade c2b5924 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# Use lightweight Python image
FROM python:3.10-slim
# Environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
# Working directory
WORKDIR /app
# Copy requirements first (better caching)
COPY requirements.txt .
# Install Python deps
RUN pip install --no-cache-dir -r requirements.txt
# Copy app
COPY app.py .
# Expose HF port
EXPOSE 7860
# start Flask server
CMD python app.py
|