Skip to content

Commit

Permalink
Update alpine to 3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
andyasp committed Dec 8, 2023
1 parent 2ac89f0 commit 492caeb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## main / unreleased

* [ENHANCEMENT] Update Docker base image to `alpine:3.19`. #97

## v0.9.0

* [ENHANCEMENT] Updated dependencies, including: #93
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21-alpine3.18 AS build
FROM golang:1.21-alpine3.19 AS build

ARG TARGETOS
ARG TARGETARCH
Expand All @@ -10,7 +10,7 @@ COPY . /src/rollout-operator
WORKDIR /src/rollout-operator
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} make ${BUILDTARGET}

FROM alpine:3.18
FROM alpine:3.19
RUN apk add --no-cache ca-certificates

COPY --from=build /src/rollout-operator/rollout-operator /bin/rollout-operator
Expand Down
2 changes: 1 addition & 1 deletion integration/mock-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.18
FROM alpine:3.19

COPY mock-service /bin/mock-service
ENTRYPOINT [ "/bin/mock-service" ]
Expand Down

0 comments on commit 492caeb

Please sign in to comment.