Skip to content

Commit

Permalink
feat: Container image updates
Browse files Browse the repository at this point in the history
- Builder image moved to go 1.21 as per go.mod
- Runtime image upgraded to alpine 3.19

Signed-off-by: Peter Fiddes <[email protected]>
  • Loading branch information
hawksight committed Jan 31, 2024
1 parent 57dc1e3 commit 2081df1
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,4 +1,4 @@
FROM golang:1.19-alpine3.18 AS builder
FROM golang:1.21.6-alpine3.19 AS builder

ENV GO111MODULE=on \
CGO_ENABLED=0 \
Expand All @@ -17,7 +17,7 @@ COPY . .

RUN go install -ldflags="-w -s" .

FROM alpine:3.18
FROM alpine:3.19

RUN apk --no-cache add fio

Expand Down

0 comments on commit 2081df1

Please sign in to comment.