Skip to content

Commit

Permalink
chore(all): update alpine Docker tag to v3.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 7, 2024
1 parent 05e06de commit 0e0b9f4
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 CGO_LDFLAGS="-fuse-ld=mold -lsasl2" go build -tags musl --ldflags "-w -s" -a -o consumer consumer/consumer.go

FROM alpine:3.20.2 AS runtime
FROM alpine:3.20.3 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 @@ -32,7 +32,7 @@ RUN go mod download
COPY . .
RUN CGO_ENABLED=1 GOOS=linux CGO_LDFLAGS="-fuse-ld=mold -lsasl2" go build -tags musl --ldflags "-w -s" -a -o consumer consumer/consumer.go

FROM alpine:3.20.2 AS runtime
FROM alpine:3.20.3 AS runtime
COPY --from=builder /app/consumer /
EXPOSE 8080
CMD ["/bin/sh", "-c", "/consumer"]

0 comments on commit 0e0b9f4

Please sign in to comment.