From 17c4b0dc66e2f0430ad98b9dc8bff9a61bfc5f65 Mon Sep 17 00:00:00 2001 From: Arndt Touby Date: Sat, 18 Jan 2025 11:40:53 +0100 Subject: [PATCH] =?UTF-8?q?Entferne=20die=20Node.js-Installation=20aus=20d?= =?UTF-8?q?em=20Dockerfile=20und=20optimiere=20die=20Abh=C3=A4ngigkeiten?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3999d0d..8305b8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,6 @@ ARG DEBIAN_VERSION=bookworm-20241223-slim ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}" ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}" -ARG NODE_VERSION=20 #################################################################################################### FROM ${BUILDER_IMAGE} AS package_installer @@ -26,10 +25,7 @@ RUN apt-get update -y && apt-get install -y build-essential \ git \ locales \ curl \ - inotify-tools - -RUN curl -fsSL "https://deb.nodesource.com/setup_${NODE_VERSION}.x" | bash -RUN apt-get install -y nodejs \ + inotify-tools \ && apt-get clean && rm -f /var/lib/apt/lists/*_* # prepare build dir