Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -9,8 +9,8 @@ RUN apt-get update && \
|
|
| 9 |
apt-get clean && \
|
| 10 |
rm -rf /var/lib/apt/lists/*
|
| 11 |
|
| 12 |
-
# Clone the public repository
|
| 13 |
-
RUN git clone https://github.com/zawsq/HeartDiseasePredictor_Model.git /app/HeartDiseasePredictor_Model
|
| 14 |
|
| 15 |
# Set the working directory to the cloned repository
|
| 16 |
WORKDIR /app/HeartDiseasePredictor_Model
|
|
|
|
| 9 |
apt-get clean && \
|
| 10 |
rm -rf /var/lib/apt/lists/*
|
| 11 |
|
| 12 |
+
# Clone the public repository and checkout the patch-1 branch
|
| 13 |
+
RUN git clone -b patch-1 https://github.com/zawsq/HeartDiseasePredictor_Model.git /app/HeartDiseasePredictor_Model
|
| 14 |
|
| 15 |
# Set the working directory to the cloned repository
|
| 16 |
WORKDIR /app/HeartDiseasePredictor_Model
|