CoolFace
Apppublic

Lokiiparihar/Modal_deploy

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile21 linesDownload Raw Back to root
1FROM python:3.10-slim2 3 4 5 6WORKDIR /app7 8COPY app.py .9 10COPY tuned_xgboost_model.pkl .11 12COPY requirements.txt .13 14 15 16 17RUN pip install --no-cache-dir -r requirements.txt18 19EXPOSE 786020 21CMD ["python", "app.py"]\