Spaces:
Sleeping
Sleeping
File size: 473 Bytes
1661bec 076fbd9 1661bec 6729203 1661bec d0c7e75 1661bec 6729203 750d741 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Use a lightweight Python base image
FROM python:3.11.6-slim
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
# Install dependencies
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
# Install Gunicorn
RUN pip install gunicorn
# Copy app files
COPY . /app
# Expose the port Flask will run on
EXPOSE 5000
# Run the app with Gunicorn
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:app"] |