From 3b7f38a1ed582ba8d8c05f32a709fe7db4ffabd3 Mon Sep 17 00:00:00 2001 From: Adam Tajti Date: Thu, 17 Aug 2023 06:57:14 +0200 Subject: [PATCH] bump to alpine 3.18 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c265bb7e..c5356e99 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN go build -o app # We're using a multistage build -- the previous stage has the full go toolchain # so it can do the build, and this stage is just a minimal Alpine image that we # copy the statically-linked binary into to keep our image small. -FROM alpine:3.6 +FROM alpine:3.18 RUN apk add --no-cache ca-certificates