diff --git a/images/ubuntu/24.04/Dockerfile b/images/ubuntu/24.04/Dockerfile index 8fb6c10..08eba0e 100644 --- a/images/ubuntu/24.04/Dockerfile +++ b/images/ubuntu/24.04/Dockerfile @@ -2,9 +2,13 @@ FROM ubuntu:24.04 RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/* +# install basis tools +RUN apt-get update && \ + apt-get install -y --no-install-recommends curl ca-certificates && \ + rm -rf /var/lib/apt/lists/* + # install nodejs -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 && \ +RUN 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 && \ rm -rf /var/lib/apt/lists/* && \