From c481d3f0321ce84df66fbe4928d0b3bef26f1430 Mon Sep 17 00:00:00 2001 From: Ryan McGuire Date: Sat, 4 Jul 2026 17:42:03 -0400 Subject: [PATCH] add ca-certs to image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8d1f57a..1ab5db4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,8 @@ FROM alpine:latest ARG APP_NAME=econet-exporter +RUN apk add --no-cache ca-certificates + WORKDIR /app USER 100:101