Skip to content

Commit

Permalink
Docker setup: use normal clone for ruleset
Browse files Browse the repository at this point in the history
Use normal clone rather than --single-branch clone for ruleset, so that it
is easier to switch branches for testing purposes after deployment.
  • Loading branch information
stsnel committed Oct 3, 2023
1 parent a3cc086 commit 247164f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/images/yoda_irods_icat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ RUN mkdir /var/lib/irods/.irods
COPY irods_environment.json /var/lib/irods/.irods/irods_environment.json

# Install and configure rulesets
RUN git clone -b ${YODA_RULESET_BRANCH} --single-branch ${YODA_RULESET_REPO} /etc/irods/yoda-ruleset
RUN git clone -b ${YODA_RULESET_BRANCH} ${YODA_RULESET_REPO} /etc/irods/yoda-ruleset
# hadolint ignore=DL3004
RUN sudo -u irods python -m pip --no-cache-dir install --user pip==20.2.4 && \
sudo -u irods python -m pip --no-cache-dir install --user setuptools==44.1.1 && \
Expand Down

0 comments on commit 247164f

Please sign in to comment.