Skip to content

Commit

Permalink
chore(all): update alpine Docker tag to v3.18.5
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Dec 1, 2023
1 parent f729566 commit 44427ee
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 @@ -34,7 +34,7 @@ RUN go mod download
COPY . .
RUN CGO_ENABLED=1 GOOS=linux GOARCH=$TARGETARCH go build -tags musl --ldflags "-extldflags -static" -a -o consumer consumer/consumer.go

FROM alpine:3.18.4 as runtime
FROM alpine:3.18.5 as runtime
COPY --from=builder /app/consumer /
EXPOSE 8080
CMD ["/bin/sh", "-c", "/consumer"]
2 changes: 1 addition & 1 deletion Dockerfile.consumer
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN go mod download
COPY . .
RUN CGO_ENABLED=1 GOOS=linux go build -tags musl --ldflags "-extldflags -static" -a -o consumer consumer/consumer.go

FROM alpine:3.18.4 as runtime
FROM alpine:3.18.5 as runtime
COPY --from=builder /app/consumer /
EXPOSE 8080
CMD ["/bin/sh", "-c", "/consumer"]

0 comments on commit 44427ee

Please sign in to comment.