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 components/kyma-environment-broker/Dockerfile.sac
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ FROM alpine:latest as certs
RUN apk --update add ca-certificates

# Final image
FROM alpine:3.16.2
FROM alpine:3.17.2
LABEL source = git@github.com:kyma-project/control-plane.git

RUN apk --no-cache add --update openssl openssl-dev --repository=https://dl-cdn.alpinelinux.org/alpine/edge/main
Expand Down
4 changes: 2 additions & 2 deletions components/kyma-environment-broker/Dockerfile.tcj
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ COPY go.sum go.sum
RUN CGO_ENABLED=0 go build -o /app/trialcleanup ./cmd/trialcleanup/main.go

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

# Final image
FROM alpine:3.16.2
FROM alpine:3.17.2
LABEL source = git@github.com:kyma-project/control-plane.git

RUN apk --no-cache add --update openssl openssl-dev --repository=https://dl-cdn.alpinelinux.org/alpine/edge/main
Expand Down