From 9b346fb97be8b64e37947e759bf57673c37618af Mon Sep 17 00:00:00 2001 From: Gisle Aune Date: Sun, 9 Aug 2020 16:07:44 +0200 Subject: [PATCH] update drone ci. --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 647e51b..618cd8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ## 1. Build Server -# Use Go 1.12 -FROM golang:1.12 AS build-server +# Use Go 1.14 +FROM golang:1.14 AS build-server # Load repository into docker WORKDIR /project/ @@ -15,7 +15,7 @@ RUN go build -installsuffix cgo -ldflags="-s -w" -o /binaries/rpdata-server ./cm ## 2. Distribute # Use alpine linux -FROM alpine:3.7 +FROM alpine:3.12 # Install certificates to enable HTTPS GET requests, and tzdata for log imports. RUN apk add --no-cache ca-certificates tzdata