From fe54903bd1477543751dbacc3b46f02be9406c77 Mon Sep 17 00:00:00 2001 From: Leonard Goodell Date: Thu, 23 Sep 2021 16:40:29 -0700 Subject: [PATCH] build: update alpine base to 3.14 Signed-off-by: Leonard Goodell --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 53f5c591..f4a58265 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ # limitations under the License. # build stage -ARG BASE=golang:1.16-alpine3.12 +ARG BASE=golang:1.16-alpine3.14 FROM ${BASE} AS builder ARG ALPINE_PKG_BASE="make git gcc libc-dev libsodium-dev zeromq-dev" @@ -35,7 +35,7 @@ ARG MAKE="make build" RUN $MAKE # final stage -FROM alpine:3.12 +FROM alpine:3.14 LABEL license='SPDX-License-Identifier: Apache-2.0' \ copyright='Copyright (c) 2020: Intel' LABEL Name=app-service-rfid-llrp-inventory Version=${VERSION}