From 19dcf9d40bf5a250598af8573bde9b70bb57f861 Mon Sep 17 00:00:00 2001 From: Antoine Aflalo <197810+Belphemur@users.noreply.github.com> Date: Tue, 9 Sep 2025 21:47:47 -0400 Subject: [PATCH] fix(docker): missing ca-certificate --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7ef25f5..fc5f6ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,9 +21,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends adduser && \ COPY ${TARGETPLATFORM}/CBZOptimizer ${APP_PATH} -RUN apt-get update && apt-get install -y --no-install-recommends \ +RUN apt-get update && \ + apt-get upgrade -y && \ + apt-get install -y --no-install-recommends \ inotify-tools \ bash \ + ca-certificates \ bash-completion && \ rm -rf /var/lib/apt/lists/* && \ chmod +x ${APP_PATH} && \