From 932eab00a08c135020035978f010f746b4ba5d9e Mon Sep 17 00:00:00 2001 From: TwinProduction Date: Fri, 5 Mar 2021 00:38:40 -0500 Subject: [PATCH] Test using Docker image with Go 1.15 instead of alpine, which has 1.16 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 277a15ff..68adb093 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the go application into a binary -FROM golang:alpine as builder +FROM golang:1.15-alpine as builder RUN apk --update add ca-certificates WORKDIR /app COPY . ./