Skip to content

Commit

Permalink
fix(deps): update Dockerfiles from alpine:3.19.1 to alpine:3.20.0 (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and cwaldren-ld committed Jun 12, 2024
1 parent a73be93 commit 78b1fed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# This is a standalone Dockerfile that does not depend on goreleaser building the binary
# It is NOT the version that is pushed to dockerhub
FROM golang:1.22.4-alpine3.19 as builder
FROM golang:1.22.4-alpine3.20 as builder
# See "Runtime platform versions" in CONTRIBUTING.md

RUN apk --no-cache add \
Expand All @@ -23,7 +23,7 @@ ENV GOPATH=/go

RUN go build -a -o ldr .

FROM alpine:3.19.1
FROM alpine:3.20.0

RUN addgroup -g 1000 -S ldr-user && \
adduser -u 1000 -S ldr-user -G ldr-user && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.goreleaser
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is the Dockerfile used for release (published to dockerhub by goreleaser)

FROM alpine:3.19.1
FROM alpine:3.20.0
# See "Runtime platform versions" in CONTRIBUTING.md

RUN apk add --no-cache \
Expand Down

0 comments on commit 78b1fed

Please sign in to comment.