From 86195e6021b596fa213959582461f945ea2c3924 Mon Sep 17 00:00:00 2001 From: Yi-Ting Shih Date: Sat, 13 Dec 2025 07:04:47 +0800 Subject: [PATCH] Fix: ca nmsl --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2a3d0c8..46e74a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,8 @@ COPY . . RUN make backend FROM docker.io/library/debian:13-slim AS build-run +RUN apt-get -y update && apt-get -y upgrade && \ + apt-get -y install ca-certificates COPY --from=build /work/backend /work/backend WORKDIR /work