From 258783d694cf7c8342bcf28963cb8a4663f28712 Mon Sep 17 00:00:00 2001 From: Dan Ballard Date: Thu, 30 Sep 2021 13:49:31 -0700 Subject: [PATCH] upgrade from alpine linux 3.11 to 3.14 for newer SSL root certs (old certs were now expired for some lets encrypt certs) --- Dockerfile | 2 +- Dockerfile.armhf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8802469..93e7dc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY . . RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -FROM alpine:3.11 +FROM alpine:3.14 RUN apk add --no-cache ca-certificates diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 9f4fa49..1aed87e 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -5,7 +5,7 @@ COPY . . RUN GOOS=linux GOARCH=arm GOARM=7 CGO_ENABLED=0 go build -FROM alpine:3.11 +FROM alpine:3.14 RUN apk add --no-cache ca-certificates