Gentoo Archives: gentoo-commits

From: Alexys Jacob <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/docker-images:master commit in: /
Date: Tue, 26 May 2020 11:54:28
Message-Id: 1590493997.e0ebbffa4a17e91f5224c13de3609a136ca5c2d7.ultrabug@gentoo
1 commit: e0ebbffa4a17e91f5224c13de3609a136ca5c2d7
2 Author: Konstantinos Smanis <konstantinos.smanis <AT> gmail <DOT> com>
3 AuthorDate: Tue May 26 08:13:05 2020 +0000
4 Commit: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
5 CommitDate: Tue May 26 11:53:17 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=e0ebbffa
7
8 Fix stage3 generation
9
10 catalyst started gzipping the .CONTENTS file [1]; adjust the stage3
11 Dockerfile accordingly.
12
13 [1] https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=bb21b8615e64cb31fa9aa9d533ef328dc1374e45
14 Closes: https://github.com/gentoo/gentoo-docker-images/pull/80
15
16 Signed-off-by: Alexys Jacob <ultrabug <AT> gentoo.org>
17
18 stage3.Dockerfile | 4 ++--
19 1 file changed, 2 insertions(+), 2 deletions(-)
20
21 diff --git a/stage3.Dockerfile b/stage3.Dockerfile
22 index 944aa02..a9dc594 100644
23 --- a/stage3.Dockerfile
24 +++ b/stage3.Dockerfile
25 @@ -19,7 +19,7 @@ RUN echo "Building Gentoo Container image for ${ARCH} ${SUFFIX} fetching from ${
26 && STAGE3PATH="$(wget -O- "${DIST}/latest-stage3-${MICROARCH}${SUFFIX}.txt" | tail -n 1 | cut -f 1 -d ' ')" \
27 && echo "STAGE3PATH:" $STAGE3PATH \
28 && STAGE3="$(basename ${STAGE3PATH})" \
29 - && wget -q "${DIST}/${STAGE3PATH}" "${DIST}/${STAGE3PATH}.CONTENTS" "${DIST}/${STAGE3PATH}.DIGESTS.asc" \
30 + && wget -q "${DIST}/${STAGE3PATH}" "${DIST}/${STAGE3PATH}.CONTENTS.gz" "${DIST}/${STAGE3PATH}.DIGESTS.asc" \
31 && gpg --list-keys \
32 && echo "honor-http-proxy" >> ~/.gnupg/dirmngr.conf \
33 && echo "disable-ipv6" >> ~/.gnupg/dirmngr.conf \
34 @@ -29,7 +29,7 @@ RUN echo "Building Gentoo Container image for ${ARCH} ${SUFFIX} fetching from ${
35 && tar xpf "${STAGE3}" --xattrs-include='*.*' --numeric-owner \
36 && ( sed -i -e 's/#rc_sys=""/rc_sys="docker"/g' etc/rc.conf 2>/dev/null || true ) \
37 && echo 'UTC' > etc/timezone \
38 - && rm ${STAGE3}.DIGESTS.asc ${STAGE3}.CONTENTS ${STAGE3}
39 + && rm ${STAGE3}.DIGESTS.asc ${STAGE3}.CONTENTS.gz ${STAGE3}
40
41 FROM scratch