Update Dockerfile
Browse files- 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 |
-
#
|
23 |
-
|
|
|
|
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"]
|