Skip to content

Commit

Permalink
ci: fix Docker build by using newer Go and Alpine
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Sokołowski <[email protected]>
  • Loading branch information
jakubgs committed May 21, 2024
1 parent 2f4a4a3 commit f861a79
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.15-alpine AS builder
FROM golang:1.22-alpine3.19 AS builder

RUN apk add --no-cache make

Expand All @@ -8,7 +8,7 @@ ADD . .
RUN make build

# Copy the binary to the second image
FROM alpine:3.14
FROM alpine:3.19

LABEL maintainer="[email protected]"
LABEL source="https://github.com/status-im/telemetry"
Expand Down

0 comments on commit f861a79

Please sign in to comment.