Update Dockerfile
Browse files- 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 |
-
#
|
| 19 |
-
|
| 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 && \
|