File size: 1,118 Bytes
e1ef3ec ff402b2 e1ef3ec ff402b2 e1ef3ec c473a31 e1ef3ec ff402b2 71d023c af31759 e1ef3ec af31759 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# Stage 1: Build
FROM python:3.11-slim as builder
WORKDIR /app
# Install git and wget
RUN apt-get update && \
apt-get install -y --no-install-recommends git wget && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Clone the public repository and checkout the patch-1 branch
RUN git clone -b patch-1 https://github.com/zawsq/HeartDiseasePredictor_Model.git /app/HeartDiseasePredictor_Model
# Set the working directory to the cloned repository
WORKDIR /app/HeartDiseasePredictor_Model
# Download the model file from Hugging Face into the existing "model" folder
RUN wget -O /app/HeartDiseasePredictor_Model/model/RandomForest_best_model.pkl \
https://huggingface.co/exis0705/heart_disease_predictor_model/resolve/main/RandomForest_best_model.pkl
# Set PYTHONPATH to include the root directory of the project
ENV PYTHONPATH=/app/HeartDiseasePredictor_Model
# Install Python dependencies
RUN pip install --upgrade pip && \
pip install -r requirements.txt
# Change to the deployment/Api directory and run the app
WORKDIR /app/HeartDiseasePredictor_Model/deployment/Api
CMD ["python", "app.py"] |