Skip to content

Commit 666e8d3

Browse files
authored
Update base image version in Dockerfiles to bci-busybox 16.0 (#4998)
1 parent 428237a commit 666e8d3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ARG TINI_SUM_arm64=eae1d3aa50c48fb23b8cbdf4e369d0910dfc538566bfd09df89a774aa84a4
1313

1414
# Download both tini binaries on the native build platform to avoid QEMU networking
1515
# issues when cross-building for arm64.
16-
FROM --platform=$BUILDPLATFORM registry.suse.com/bci/bci-busybox:15.7 AS tini-downloader
16+
FROM --platform=$BUILDPLATFORM registry.suse.com/bci/bci-busybox:16.0 AS tini-downloader
1717
ARG TINI_VERSION TINI_SUM_amd64 TINI_SUM_arm64
1818
RUN set -eux; \
1919
wget -qO /tini-amd64 "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static-amd64"; \
@@ -22,7 +22,7 @@ RUN set -eux; \
2222
echo "${TINI_SUM_arm64} /tini-arm64" | sha256sum -c -; \
2323
chmod 0755 /tini-amd64 /tini-arm64
2424

25-
FROM --platform=linux/${ARCH} registry.suse.com/bci/bci-busybox:15.7 AS base
25+
FROM --platform=linux/${ARCH} registry.suse.com/bci/bci-busybox:16.0 AS base
2626
ARG ARCH
2727
COPY --from=tini-downloader /tini-${ARCH} /usr/bin/tini
2828
COPY package/log.sh /usr/bin/

package/Dockerfile.agent

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG TARGETPLATFORM
33
ARG TARGETARCH
44
ARG ARCH=${TARGETARCH}
55

6-
FROM --platform=linux/${ARCH} registry.suse.com/bci/bci-busybox:15.7 AS base
6+
FROM --platform=linux/${ARCH} registry.suse.com/bci/bci-busybox:16.0 AS base
77

88
FROM base AS copy_docker
99
ONBUILD ARG ARCH

0 commit comments

Comments
 (0)