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

docker(deps): bump alpine from 3.21.0 to 3.21.2 #1614

Merged
merged 2 commits into from
Jan 21, 2025
Merged
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 Dockerfile.globalaccounts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COPY go.sum go.sum
RUN CGO_ENABLED=0 go build -o /bin/globalaccounts cmd/globalaccounts/main.go

# Get latest CA certs
FROM alpine:3.21.0 as certs
FROM alpine:3.21.2 as certs
RUN apk --update add ca-certificates

# Final image
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.job
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ARG BIN
RUN CGO_ENABLED=0 go build -o /bin/main ./cmd/${BIN}/main.go

# Get latest CA certs
FROM alpine:3.21.0 as certs
FROM alpine:3.21.2 as certs
RUN apk --update add ca-certificates

# Final image
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.keb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN CGO_ENABLED=0 go build -o /bin/kyma-env-broker ./cmd/broker/
RUN touch /swagger.yaml

# Get latest CA certs
FROM alpine:3.21.0 as certs
FROM alpine:3.21.2 as certs
RUN apk --update add ca-certificates

# Final image
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.subaccountsync
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COPY go.sum go.sum
RUN CGO_ENABLED=0 go build -o /bin/subaccount-sync cmd/subaccountsync/main.go

# Get latest CA certs
FROM alpine:3.21.0 as certs
FROM alpine:3.21.2 as certs
RUN apk --update add ca-certificates

# Final image
Expand Down
Loading