Skip to content

Commit

Permalink
chore(all): update alpine Docker tag to v3.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jan 27, 2024
1 parent 2c0ee47 commit 249f358
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.19.0 as runtime
FROM alpine:3.19.1 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.19.0 as runtime
FROM alpine:3.19.1 as runtime
COPY --from=builder /app/consumer /
EXPOSE 8080
CMD ["/bin/sh", "-c", "/consumer"]

0 comments on commit 249f358

Please sign in to comment.