File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,8 +25,11 @@ ARG vpipe_path
2525ARG envs_path
2626ARG test_data
2727
28+ # HACK v7.32.4 is so old that Debian 10 Buster is EOL
2829# hadolint ignore=DL3008
29- RUN apt-get update && apt-get install -y --no-install-recommends \
30+ RUN \
31+ sed -E -i 's@(\/\/ )[^\. ]+(\. debian\. org)@\1 archive\2 @g' /etc/apt/sources.list \
32+ apt-get update && apt-get install -y --no-install-recommends \
3033 jdupes
3134
3235# TODO: only move workflow files
@@ -72,8 +75,11 @@ FROM snakemake/snakemake:${snaketag} AS vpipe-tests-base
7275ARG install_path
7376
7477# NOTE rsync only used with local scratch
78+ # HACK v7.32.4 is so old that Debian 10 Buster is EOL
7579# hadolint ignore=DL3008
76- RUN apt-get update && apt-get install -y --no-install-recommends \
80+ RUN \
81+ sed -E -i 's@(\/\/ )[^\. ]+(\. debian\. org)@\1 archive\2 @g' /etc/apt/sources.list \
82+ apt-get update && apt-get install -y --no-install-recommends \
7783 rsync \
7884 && apt-get clean \
7985 && rm -rf /var/lib/apt/lists/*
@@ -166,8 +172,11 @@ ARG install_path
166172ARG vpipe_path
167173ARG envs_path
168174
175+ # HACK v7.32.4 is so old that Debian 10 Buster is EOL
169176# hadolint ignore=DL3008
170- RUN apt-get update && apt-get install -y --no-install-recommends \
177+ RUN \
178+ sed -E -i 's@(\/\/ )[^\. ]+(\. debian\. org)@\1 archive\2 @g' /etc/apt/sources.list \
179+ apt-get update && apt-get install -y --no-install-recommends \
171180 rsync \
172181 && apt-get clean \
173182 && rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments