Spaces:
Sleeping
Sleeping
# Use an official Python runtime as a parent image | |
FROM python:3.11-slim | |
# Install system dependencies | |
RUN apt-get update && apt-get install -y gcc | |
# Set the working directory to /app | |
WORKDIR /app | |
# Copy the requirements file and install dependencies | |
COPY requirements.txt . | |
RUN pip install --upgrade pip && pip install -r requirements.txt | |
# Create necessary directories with appropriate permissions | |
RUN mkdir -p /app/cache /app/uploads /app/data && chmod -R 777 /app/cache /app/uploads /app/data | |
RUN chmod -R 777 /app | |
# Copy the application code | |
COPY . . | |
# Set environment variables | |
ENV FLASK_APP=app.py \ | |
FLASK_ENV=production | |
EXPOSE 7860 | |
# Run the application using Gunicorn | |
CMD ["gunicorn", "-k", "eventlet", "-w", "1", "-b", "0.0.0.0:7860", "--timeout", "120", "app:app"] |