Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -19,7 +19,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 19 |
# Clone the GitHub repository
|
| 20 |
# Set your GitHub repository URL here
|
| 21 |
ARG GITHUB_REPO=https://github.com/opq007/pry.git
|
| 22 |
-
ARG GITHUB_BRANCH=
|
| 23 |
|
| 24 |
RUN echo "Cloning from $GITHUB_REPO..." && \
|
| 25 |
git clone --depth 1 --branch ${GITHUB_BRANCH} ${GITHUB_REPO} /tmp/repo && \
|
|
|
|
| 19 |
# Clone the GitHub repository
|
| 20 |
# Set your GitHub repository URL here
|
| 21 |
ARG GITHUB_REPO=https://github.com/opq007/pry.git
|
| 22 |
+
ARG GITHUB_BRANCH=master
|
| 23 |
|
| 24 |
RUN echo "Cloning from $GITHUB_REPO..." && \
|
| 25 |
git clone --depth 1 --branch ${GITHUB_BRANCH} ${GITHUB_REPO} /tmp/repo && \
|