Skip to content

Commit

Permalink
Chore: Update Alpine version in Dockerfile
Browse files Browse the repository at this point in the history
Switched base image from Alpine 3.20 to the latest Alpine 3. This change ensures compatibility with the latest packages and security updates provided by the Alpine Linux distribution.

Signed-off-by: Christian Roessner <c@roessner.co>
  • Loading branch information
Christian Roessner committed Sep 26, 2024
1 parent 708fd75 commit 01533c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN cd docker-healthcheck && go build -mod=vendor -ldflags="-s" -o healthcheck .
RUN cd contrib/smtp-server && go build -mod=vendor -ldflags="-s" -o fakesmtp .
RUN cd contrib/imap-server && go build -mod=vendor -ldflags="-s" -o fakeimap .

FROM --platform=$BUILDPLATFORM alpine:3.20
FROM --platform=$BUILDPLATFORM alpine:3

LABEL org.opencontainers.image.authors="christian@roessner.email"
LABEL org.opencontainers.image.source="https://github.com/croessner/nauthilus"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.blocklist
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV CGO_ENABLED=0
RUN pwd && ls -a
RUN cd blocklist && go build -mod=vendor -ldflags="-s" -o blocklist .

FROM --platform=$BUILDPLATFORM alpine:3.20
FROM --platform=$BUILDPLATFORM alpine:3

LABEL org.opencontainers.image.authors="christian@roessner.email"
LABEL org.opencontainers.image.source="https://github.com/croessner/nauthilus"
Expand Down

0 comments on commit 01533c3

Please sign in to comment.