Spaces:
Sleeping
Sleeping
File size: 388 Bytes
c8eea70 94e2639 c8eea70 94e2639 c8eea70 94e2639 c8eea70 94e2639 c8eea70 94e2639 c8eea70 9051e1a 94e2639 c8eea70 94e2639 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # Use official lightweight Python image
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Copy dependencies list and install them
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY app.py .
COPY templates/ templates/
# Expose the port Flask will run on
EXPOSE 7860
# Run the Flask application
CMD ["python", "app.py"]
|