Skip to content

Commit

Permalink
Update Dockerfiles
Browse files Browse the repository at this point in the history
Use Alpine 3.18 and Go 1.20
  • Loading branch information
dhui committed Jun 7, 2023
1 parent 23d8d33 commit 315a205
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
@@ -1,4 +1,4 @@
FROM golang:1.19-alpine3.16 AS builder
FROM golang:1.20-alpine3.18 AS builder
ARG VERSION

RUN apk add --no-cache git gcc musl-dev make
Expand All @@ -15,7 +15,7 @@ COPY . ./

RUN make build-docker

FROM alpine:3.16
FROM alpine:3.18

RUN apk add --no-cache ca-certificates

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.github-actions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.16
FROM alpine:3.18

RUN apk add --no-cache ca-certificates

Expand Down

0 comments on commit 315a205

Please sign in to comment.