From af4ad71963f8017118bc4a12e8a4fe9d4c892150 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 01:15:58 +0000 Subject: [PATCH] Update alpine Docker tag to v3.21.0 --- alpine/Dockerfile | 2 +- builder/Dockerfile | 2 +- emulator/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index ba655b1..d663ece 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1.12.0 -ARG VERSION=3.20.3 +ARG VERSION=3.21.0 # ========================================================= FROM alpine:$VERSION AS overlay diff --git a/builder/Dockerfile b/builder/Dockerfile index eb11c27..d3da632 100644 --- a/builder/Dockerfile +++ b/builder/Dockerfile @@ -7,7 +7,7 @@ RUN \ CGO_ENABLED=0 go build -o /go/bin/init -v --ldflags '-s -w -extldflags=-static' # ========================================================= -FROM alpine:3.20.3 AS image +FROM alpine:3.21.0 AS image SHELL ["/bin/ash", "-euxo", "pipefail", "-c"] RUN apk add --no-cache \ bash \ diff --git a/emulator/Dockerfile b/emulator/Dockerfile index 19afcd5..f204ea5 100644 --- a/emulator/Dockerfile +++ b/emulator/Dockerfile @@ -7,7 +7,7 @@ RUN --mount=from=claylinux/alpine-virt:latest,target=/system build-image --forma # ========================================================= # Generate a qemu image running our custom OS image -FROM alpine:3.20.3 AS emulator +FROM alpine:3.21.0 AS emulator RUN apk add --no-cache bash qemu-system-x86_64 ovmf COPY entrypoint.sh /entrypoint ENTRYPOINT ["/entrypoint"]