Skip to content

Commit

Permalink
Update alpine Docker tag to v3.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 6, 2024
1 parent 0d80c6d commit af4ad71
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion emulator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit af4ad71

Please sign in to comment.