Skip to content
This repository was archived by the owner on Jul 2, 2022. It is now read-only.

Commit a4edef9

Browse files
committed
no debian, back to 3.7
1 parent 939c83c commit a4edef9

File tree

3 files changed

+3
-33
lines changed

3 files changed

+3
-33
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ env:
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

1311
before_script:
1412
- sudo apt-get --yes --no-install-recommends install binfmt-support qemu-user-static

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
ARG BASE_IMAGE
2-
FROM ${BASE_IMAGE:-library/alpine}:edge
2+
FROM ${BASE_IMAGE:-library/alpine}:3.7
33

44
ARG QEMU_ARCH
55
ENV QEMU_ARCH=${QEMU_ARCH:-x86_64} S6_KEEP_ENV=1
66

77
COPY 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

Dockerfile.debian

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)