Skip to content

Commit

Permalink
chore: update alpine version
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed May 24, 2024
1 parent 98ff9f9 commit 643fb19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM golang:alpine3.19 as builder
FROM golang:alpine3.20 as builder

RUN apk --no-cache --no-progress add make git gcc musl-dev ca-certificates

WORKDIR /src/
COPY . .
RUN make build

FROM alpine:3.19
FROM alpine:3.20
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /src/mjolnir /usr/bin/mjolnir

Expand Down

0 comments on commit 643fb19

Please sign in to comment.