From 5b78f3ef72e26ab334187d758282a75ed946ac7a Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Sat, 20 Feb 2021 09:28:40 +0000
Subject: [PATCH] Bump golang from 1.15 to 1.16.0 (#160)

Bumps golang from 1.15 to 1.16.0.

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
 Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 848a7e5..c95896a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM golang:1.15 AS builder
+FROM golang:1.16.0 AS builder
 ENV APP_ROOT=/opt/app-root
 ENV GOPATH=$APP_ROOT
 
@@ -13,7 +13,7 @@ RUN go build ./cmd/server
 RUN CGO_ENABLED=0 go build -gcflags "all=-N -l" -o server_debug ./cmd/server
 
 # Multi-Stage production build
-FROM golang:1.15 as deploy
+FROM golang:1.16.0 as deploy
 
 # Retrieve the binary from the previous stage
 COPY --from=builder /opt/app-root/src/server /usr/local/bin/rekor-server
-- 
GitLab