From 8ab2785c6f1da428b06ff3888324dccc1921e817 Mon Sep 17 00:00:00 2001 From: hyooookyung Date: Fri, 29 Dec 2023 15:58:46 +0900 Subject: [PATCH] Added vulnerability fixes for Alpine Linux OS Signed-off-by: hyooookyung --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 313956f1..7eda0f8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # ----------------------------------------------------------------------------- # Build... -FROM golang:1.18.1-alpine3.14 AS build +FROM golang:1.21-alpine3.19 AS build WORKDIR /popeye @@ -13,7 +13,7 @@ RUN apk --no-cache add make git gcc libc-dev curl ca-certificates && make build # ----------------------------------------------------------------------------- # Image... -FROM alpine:3.14.0 +FROM alpine:3.19.0 COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt COPY --from=build /popeye/execs/popeye /bin/popeye