22 lines
513 B
Docker
22 lines
513 B
Docker
FROM python:3.11-slim
|
|
|
|
# Install gcc compiler for C code compilation
|
|
RUN apt-get update && \
|
|
apt-get install -y gcc build-essential && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy requirements and install Python dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy application code
|
|
COPY . .
|
|
|
|
# Expose port 5000
|
|
EXPOSE 5000
|
|
|
|
# Run the application with Gunicorn
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--workers", "1", "app:app"] |