File size: 313 Bytes
7dddf14
 
 
 
 
 
d520c37
7dddf14
 
 
 
 
 
 
 
d1865a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.12-slim

WORKDIR /app

# Install dependencies
COPY requirements.txt .

RUN pip install --upgrade pip && \
    pip install --no-cache-dir -r requirements.txt

# Copy your application code
COPY . .

EXPOSE 5000

CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:5000", "ConstructionComplexityCalculator:app"]