This repository was archived by the owner on Jul 2, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-33
lines changed
Expand file tree Collapse file tree 3 files changed +3
-33
lines changed Original file line number Diff line number Diff line change 77 - BASE_IMAGE=library/alpine QEMU_ARCH=x86_64 DOCKERFILE="Dockerfile" TAG_SUFFIX="amd64"
88 - BASE_IMAGE=arm32v6/alpine QEMU_ARCH=arm DOCKERFILE="Dockerfile" TAG_SUFFIX="armhf"
99 - BASE_IMAGE=arm64v8/alpine QEMU_ARCH=aarch64 DOCKERFILE="Dockerfile" TAG_SUFFIX="aarch64"
10- - BASE_IMAGE=library/debian QEMU_ARCH=x86_64 DOCKERFILE="Dockerfile.debian" TAG_SUFFIX="debian-amd64"
11- - BASE_IMAGE=arm32v7/debian QEMU_ARCH=arm DOCKERFILE="Dockerfile.debian" TAG_SUFFIX="debian-armhf"
1210
1311before_script :
1412 - sudo apt-get --yes --no-install-recommends install binfmt-support qemu-user-static
Original file line number Diff line number Diff line change 11ARG BASE_IMAGE
2- FROM ${BASE_IMAGE:-library/alpine}:edge
2+ FROM ${BASE_IMAGE:-library/alpine}:3.7
33
44ARG QEMU_ARCH
55ENV QEMU_ARCH=${QEMU_ARCH:-x86_64} S6_KEEP_ENV=1
66
77COPY qemu/qemu-${QEMU_ARCH}-static /usr/bin/
88
9- RUN set -x && apk add --no-cache libgcc libstdc++ curl curl-dev coreutils tzdata shadow libstdc++ paxctl \
9+ RUN set -x && apk add --no-cache curl coreutils tzdata shadow \
1010 && case "${QEMU_ARCH}" in \
1111 x86_64) S6_ARCH='amd64' ;; \
1212 arm) S6_ARCH='armhf' ;; \
@@ -18,6 +18,7 @@ RUN set -x && apk add --no-cache libgcc libstdc++ curl curl-dev coreutils tzdata
1818 useradd -u 911 -U -d /config -s /bin/false abc && \
1919 usermod -G users abc && \
2020 mkdir -p /app /config /defaults && \
21+ apk del --no-cache curl \
2122 apk del --purge \
2223 rm -rf /tmp/*
2324
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments