Skip to content
Snippets Groups Projects

Add upstream condor repo [bookworm]

1 file
+ 5
3
Compare changes
  • Side-by-side
  • Inline
+ 5
3
@@ -17,11 +17,13 @@ RUN apt-get --assume-yes install \
apt-utils \
bash-completion \
curl \
gpg \
lsb-release \
wget && \
apt-get clean
# Add other repos
RUN echo "deb [trusted=yes] https://hypatia.aei.mpg.de/lsc-amd64-bookworm ./" > /etc/apt/sources.list.d/lscsoft.list \
&& apt-get update \
&& apt-get clean
RUN curl https://research.cs.wisc.edu/htcondor/repo/keys/HTCondor-23.x-Key | gpg --dearmor --yes --output /usr/share/keyrings/HTCondor-23.x.gpg \
&& echo "deb [signed-by=/usr/share/keyrings/HTCondor-23.x.gpg] https://research.cs.wisc.edu/htcondor/repo/debian/23.x bookworm main" > /etc/apt/sources.list.d/htcondor.list \
&& echo "deb [trusted=yes] https://hypatia.aei.mpg.de/lsc-amd64-bookworm ./" > /etc/apt/sources.list.d/lscsoft.list \
&& apt-get update && apt-get clean
Loading