Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -15,6 +15,9 @@ 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 |
# Install Python dependencies
|
19 |
RUN pip install --upgrade pip && \
|
20 |
pip install -r requirements.txt
|
|
|
15 |
# Set the working directory to the cloned repository
|
16 |
WORKDIR /app/HeartDiseasePredictor_Model
|
17 |
|
18 |
+
# Print all files in the repository for debugging
|
19 |
+
RUN ls -R
|
20 |
+
|
21 |
# Install Python dependencies
|
22 |
RUN pip install --upgrade pip && \
|
23 |
pip install -r requirements.txt
|