Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docker/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

ARG TARGETPLATFORM=linux/amd64
ARG BUILDPLATFORM
FROM --platform=${TARGETPLATFORM} alpine:3.23
FROM --platform=${TARGETPLATFORM} alpine:3.24

Check warning on line 7 in docker/base/Dockerfile

View workflow job for this annotation

GitHub Actions / Build rerp-base

Setting platform to predefined $TARGETPLATFORM in FROM is redundant as this is the default behavior

RedundantTargetPlatform: Setting platform to predefined ${TARGETPLATFORM} in FROM is redundant as this is the default behavior More info: https://docs.docker.com/go/dockerfile/rule/redundant-target-platform/

# Install runtime dependencies
RUN apk add --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion docker/base/Dockerfile.multiarch
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ARG TARGETPLATFORM
ARG BUILDPLATFORM

FROM --platform=${TARGETPLATFORM} alpine:3.23
FROM --platform=${TARGETPLATFORM} alpine:3.24

# Install runtime dependencies
RUN apk add --no-cache \
Expand Down
Loading