File size: 316 Bytes
cae45c6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Use Python base image
FROM python:3.12
# Set working directory
WORKDIR /app
# Copy current files into container
COPY . /app
# Install Flask
RUN pip install --no-cache-dir -r requirements.txt
# Expose default port
EXPOSE 7860
# Run with Gunicorn
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "CHRIS:app"]
|