From dc2a7a0c6e8510058415f9430b6d4142b93c3a19 Mon Sep 17 00:00:00 2001 From: "Alex Ellis (OpenFaaS Ltd)" Date: Wed, 24 Aug 2022 18:31:14 +0100 Subject: [PATCH] Update alpine version for basic-auth-plugin Signed-off-by: Alex Ellis (OpenFaaS Ltd) --- _config.yml | 3 ++- auth/basic-auth/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/_config.yml b/_config.yml index c4192631..34ac42a2 100644 --- a/_config.yml +++ b/_config.yml @@ -1 +1,2 @@ -theme: jekyll-theme-cayman \ No newline at end of file +theme: jekyll-theme-cayman + diff --git a/auth/basic-auth/Dockerfile b/auth/basic-auth/Dockerfile index e49f57cb..ab7e552f 100644 --- a/auth/basic-auth/Dockerfile +++ b/auth/basic-auth/Dockerfile @@ -26,7 +26,7 @@ RUN CGO_ENABLED=${CGO_ENABLED} GOOS=${TARGETOS} GOARCH=${TARGETARCH} go test -v RUN CGO_ENABLED=${CGO_ENABLED} GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build \ --ldflags "-s -w" -a -installsuffix cgo -o handler . -FROM --platform=${TARGETPLATFORM:-linux/amd64} alpine:3.16.1 as ship +FROM --platform=${TARGETPLATFORM:-linux/amd64} alpine:3.16.2 as ship # Add non-root user RUN addgroup -S app && adduser -S -g app app \ && mkdir -p /home/app \