ItsProtesilaus's picture
Another try
9ab4680
Raw
History Blame Contribute Delete
203 Bytes
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"]