We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8acfe93 commit 1acd536Copy full SHA for 1acd536
Dockerfile
@@ -8,6 +8,12 @@ COPY cpanfile /tmp/
8
9
RUN perl -V
10
11
+RUN if [ "${BASE}" = "*buster*" ]; then \
12
+ sed -i 's|http://deb.debian.org/debian|http://archive.debian.org/debian|g' /etc/apt/sources.list && \
13
+ sed -i 's|http://security.debian.org/debian-security|http://archive.debian.org/debian-security|g' /etc/apt/sources.list && \
14
+ echo 'Acquire::Check-Valid-Until "false";' > /etc/apt/apt.conf.d/99no-check-valid-until; \
15
+fi
16
+
17
RUN apt-get update && \
18
apt-get dist-upgrade -y && \
19
apt-get -y --no-install-recommends install \
0 commit comments