Skip to content

Commit

Permalink
Merge pull request #4 from mglants/renovate/docker.io-alpine-3.x
Browse files Browse the repository at this point in the history
feat(container): update image docker.io/alpine ( 3.19.1 → 3.20.0 )
  • Loading branch information
mglants authored May 23, 2024
2 parents 170dab4 + f520160 commit 1acbeec
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/kea-dhcp-sidecar/Dockerfile
Original file line number Diff line number Diff line change
@@ -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/

Expand Down
4 changes: 2 additions & 2 deletions apps/kea-dhcp/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion apps/matchbox/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/mktxp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 1acbeec

Please sign in to comment.