Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@ RUN useradd osg \
# Pull HTCondor from the proper repo. For "release" we need to use
# osg-upcoming-testing to meet the patch tuesday requirements.
RUN if [[ $BASE_YUM_REPO = release ]]; then \
yum -y --enablerepo=osg-upcoming-testing install condor; \
yum -y --enablerepo=osg-upcoming-testing install condor \
pelican-debug; \
else \
yum -y install condor; \
yum -y install condor \
pelican-debug;\
fi

# Install an alternate back-version of apptainer with support for registry mirrors,
Expand Down
Loading