Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update alpine Docker tag to v3.21 #27

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax = docker/dockerfile:1.5.2
# tag needed for riscv64 support
FROM --platform=$BUILDPLATFORM alpine:3.19 AS httpd_git
FROM --platform=$BUILDPLATFORM alpine:3.21 AS httpd_git

RUN apk add --no-cache git
WORKDIR /app
Expand All @@ -13,7 +13,7 @@ RUN git fetch origin tag "$BUSYBOX_VERSION" --no-tags
RUN git -c advice.detachedHead=false -c gc.auto=0 checkout "tags/$BUSYBOX_VERSION"


FROM alpine:3.19 AS httpd
FROM alpine:3.21 AS httpd

RUN apk add --no-cache gcc make musl-dev
COPY --link --from=httpd_git /app /app
Expand All @@ -22,7 +22,7 @@ WORKDIR /app
RUN make -s -j4 && make install


FROM --platform=$BUILDPLATFORM alpine:3.19 AS tini
FROM --platform=$BUILDPLATFORM alpine:3.21 AS tini

RUN apk add --no-cache curl
ARG TINI_VERSION="v0.19.0"
Expand Down
Loading