Spaces:
Running
Running
File size: 447 Bytes
30fabb4 |
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 |
# Use official Python base image
FROM python:3.11.8-slim
# Set working directory
WORKDIR /app
# Copy dependency file
COPY requirements.txt .
# Install system dependencies and Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy project files
COPY . .
# Expose port
EXPOSE 7860
# Set environment variables
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
ENV FLASK_RUN_PORT=7860
# Run application
CMD ["flask", "run"] |