From faba20fdfb73701e7f6825194ac00ee800a8cc16 Mon Sep 17 00:00:00 2001 From: odrling Date: Tue, 16 Jul 2024 18:34:07 +0200 Subject: [PATCH] use alpine image for container otherwise secure connections will fail because CA certs are not in the image --- ci/ContainerFile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/ContainerFile b/ci/ContainerFile index f2875c7..f2270a6 100644 --- a/ci/ContainerFile +++ b/ci/ContainerFile @@ -1,4 +1,4 @@ -FROM scratch +FROM docker.io/alpine COPY producer / EXPOSE 8140 ENTRYPOINT ["/producer"]