SilentWraith commited on
Commit
71d023c
·
verified ·
1 Parent(s): af31759

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -15,8 +15,8 @@ RUN git clone https://github.com/exis000/HeartDiseasePredictor_Model.git /app/He
15
  # Set the working directory to the cloned repository
16
  WORKDIR /app/HeartDiseasePredictor_Model
17
 
18
- # Copy the src folder into the deployment folder
19
- RUN cp -r src deployment/
20
 
21
  # Install Python dependencies
22
  RUN pip install --upgrade pip && \
 
15
  # Set the working directory to the cloned repository
16
  WORKDIR /app/HeartDiseasePredictor_Model
17
 
18
+ # Set PYTHONPATH to include the root directory of the project
19
+ ENV PYTHONPATH=/app/HeartDiseasePredictor_Model
20
 
21
  # Install Python dependencies
22
  RUN pip install --upgrade pip && \