ml-stroke / Dockerfile
Abdullah1211's picture
Upload 11 files
14a47f3 verified
raw
history blame contribute delete
181 Bytes
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY model.joblib .
COPY app.py .
CMD ["python", "app.py"]