From 48ed850650183fda3e29d77f682805669879afb7 Mon Sep 17 00:00:00 2001 From: Nicolas MASSE Date: Sat, 27 Nov 2021 21:34:33 +0100 Subject: [PATCH] fix missing ca certificates --- Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 4e55a1f..8a83390 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,5 @@ -FROM scratch +FROM alpine:latest +RUN apk add -U --no-cache ca-certificates ARG BUILT_ARTIFACT ADD "$BUILT_ARTIFACT" / EXPOSE 8080