From 7775d4b6cfc1e2e10796c16fafc77d2d7e5e84fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 21 May 2024 08:41:25 +0200 Subject: [PATCH] ci: fix Docker build by using newer Go and Alpine MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a62ab95..6ccf1ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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="jakub@status.im" LABEL source="https://github.com/status-im/telemetry"