From f52016025a8f74ca55348e19b582a2047df3fb95 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 19:26:35 +0000 Subject: [PATCH] =?UTF-8?q?feat(container):=20update=20image=20docker.io/a?= =?UTF-8?q?lpine=20(=203.19.1=20=E2=86=92=203.20.0=20)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit | datasource | package | from | to | | ---------- | ---------------- | ------ | ------ | | docker | docker.io/alpine | 3.19.1 | 3.20.0 | --- apps/kea-dhcp-sidecar/Dockerfile | 2 +- apps/kea-dhcp/Dockerfile | 4 ++-- apps/matchbox/Dockerfile | 2 +- apps/mktxp/Dockerfile | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/kea-dhcp-sidecar/Dockerfile b/apps/kea-dhcp-sidecar/Dockerfile index e77fdb6..4f75efd 100644 --- a/apps/kea-dhcp-sidecar/Dockerfile +++ b/apps/kea-dhcp-sidecar/Dockerfile @@ -1,5 +1,5 @@ FROM bitnami/kubectl:1.30.1 as kubectl -FROM docker.io/alpine:3.19.1 +FROM docker.io/alpine:3.20.0 COPY --from=kubectl /opt/bitnami/kubectl/bin/kubectl /usr/local/bin/ diff --git a/apps/kea-dhcp/Dockerfile b/apps/kea-dhcp/Dockerfile index 9c48640..d06dac5 100644 --- a/apps/kea-dhcp/Dockerfile +++ b/apps/kea-dhcp/Dockerfile @@ -1,5 +1,5 @@ # build binary -FROM docker.io/alpine:3.19.1 AS build +FROM docker.io/alpine:3.20.0 AS build ARG VERSION # Environment ARG BUILD_PKGS="build-base boost-dev log4cplus-dev autoconf automake bison botan-dev flex libcap-utils libtool mariadb-dev postgresql-dev python3-dev procps curl" @@ -52,7 +52,7 @@ WORKDIR /install RUN pip3 install --target="/install" kea-exporter # Intermediate container with runtime dependencies -FROM docker.io/alpine:3.19.1 AS runtime +FROM docker.io/alpine:3.20.0 AS runtime # Install runtime dependencies ARG RUN_PKGS="libgcc libstdc++ musl botan-libs mariadb-connector-c socat libpq procps \ diff --git a/apps/matchbox/Dockerfile b/apps/matchbox/Dockerfile index 427a8cb..76bcb90 100644 --- a/apps/matchbox/Dockerfile +++ b/apps/matchbox/Dockerfile @@ -8,7 +8,7 @@ RUN \ && apt-get clean RUN cd src && make build -FROM docker.io/alpine:3.19.1 +FROM docker.io/alpine:3.20.0 RUN mkdir /var/lib/matchbox && mkdir /var/lib/matchbox/assets ARG TARGETPLATFORM ARG TARGETARCH diff --git a/apps/mktxp/Dockerfile b/apps/mktxp/Dockerfile index 36d164f..ad6020d 100644 --- a/apps/mktxp/Dockerfile +++ b/apps/mktxp/Dockerfile @@ -6,7 +6,7 @@ RUN mkdir /mktxp && \ rm /*.tar.gz RUN pip3 install --target="/install" /mktxp/mktxp-${VERSION} -FROM docker.io/alpine:3.19.1 +FROM docker.io/alpine:3.20.0 # Install runtime dependencies ARG RUN_PKGS="python3"