From dc20756b1f51c1ac6fb45f080e351addbd8ea559 Mon Sep 17 00:00:00 2001 From: Andrew Lilley Brinker Date: Wed, 13 Nov 2024 14:34:38 -0800 Subject: [PATCH] fix: Fix broken Containerfile The `Containerfile` had quietly been broken. It was missing the `ca-certificates` package, which `curl` needed to run later steps. This commit adds the missing package. It also bumps the `Containerfile` to version `3.7.0`, the current version. Signed-off-by: Andrew Lilley Brinker --- dist/Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/Containerfile b/dist/Containerfile index 7bf9c21b..b24cac2c 100644 --- a/dist/Containerfile +++ b/dist/Containerfile @@ -2,13 +2,13 @@ FROM node:bookworm-slim -ARG HC_VERSION="3.6.3" +ARG HC_VERSION="3.7.0" WORKDIR /app RUN set -eux \ && apt-get update \ - && apt-get install --no-install-recommends -y git curl xz-utils \ + && apt-get install --no-install-recommends -y ca-certificates git curl xz-utils \ && rm -rf /var/lib/apt/lists/* \ && adduser --disabled-password hc_user \ && chown -R hc_user /app