From 43b6509b4342c6ee450024c3e2f89cf7d33b091a Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Fri, 22 Jan 2021 13:32:05 +0000 Subject: [PATCH] Feature: upgrade to Alpine 3.13 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4894634f..b93c3a45 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG ALPINE_VERSION=3.12 +ARG ALPINE_VERSION=3.13 ARG GO_VERSION=1.15 ARG BUILDPLATFORM=linux/amd64 @@ -13,7 +13,6 @@ COPY internal/ ./internal/ FROM --platform=$BUILDPLATFORM base AS test # Note on the go race detector: -# - we use golang:1.15-alpine and not golang:1.15-alpine3.12 to have the race detector fixed # - we set CGO_ENABLED=1 to have it enabled # - we install g++ to support the race detector ENV CGO_ENABLED=1