pred / Dockerfile
ramy21's picture
Deploy predictive maintenance model
d25b6dc
raw
history blame contribute delete
183 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY model.pkl .
EXPOSE 7860
CMD ["python", "app.py"]