File size: 203 Bytes
9ab4680
ca18072
5668de5
ca18072
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM python:3.12.3
WORKDIR /app

COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY model_beta2_1.keras .
COPY preprocessor_beta2.pkl .
COPY app.py .
CMD ["python", "app.py"]