From 0ffaaf919de4791cdfbda4ca8689431fbc878f6e Mon Sep 17 00:00:00 2001 From: Joe Monk Date: Sat, 26 Apr 2025 23:41:17 +0100 Subject: [PATCH] Needs certs --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6c4266c..fe85a3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,10 @@ # Use the official Node.js image as the base image FROM oven/bun:1.2.10 +RUN apt-get update && apt-get install -y --no-install-recommends \ + ca-certificates \ + && rm -rf /var/lib/apt/lists/* + # Set the working directory inside the container WORKDIR /usr/src/app