From 9f86f8b51b8274d603fc7897a05d33af356185df Mon Sep 17 00:00:00 2001 From: Martin Riedl Date: Sat, 29 Mar 2025 00:08:06 +0100 Subject: [PATCH] feat: add ca-certificates and curl to ubuntu image --- images/ubuntu/24.04/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/ubuntu/24.04/Dockerfile b/images/ubuntu/24.04/Dockerfile index c157f63..273ad92 100644 --- a/images/ubuntu/24.04/Dockerfile +++ b/images/ubuntu/24.04/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:24.04 RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/* # install nodejs -RUN apt-get update && apt-get install -y --no-install-recommends curl && \ +RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates && \ curl -fsSL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh && \ bash nodesource_setup.sh && \ apt-get install -y --no-install-recommends nodejs && \