SilentWraith commited on
Commit
2dfa24f
·
verified ·
1 Parent(s): 618a784

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -19,5 +19,6 @@ WORKDIR /app/HeartDiseasePredictor_Model
19
  RUN pip install --upgrade pip && \
20
  pip install -r requirements.txt
21
 
22
- # Run the main script
23
- CMD ["python", "-m", "deployment.Api.app"]
 
 
19
  RUN pip install --upgrade pip && \
20
  pip install -r requirements.txt
21
 
22
+ # Change to the deployment/Api directory and run the app
23
+ WORKDIR /app/HeartDiseasePredictor_Model/deployment/Api
24
+ CMD ["python", "app.py"]