Test using Docker image with Go 1.15 instead of alpine, which has 1.16

This commit is contained in:
TwinProduction 2021-03-05 00:38:40 -05:00
parent c842ac2343
commit 932eab00a0

View File

@ -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 . ./