From 89b99d995004ca939210d077327de3221b214f0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikolai=20R=C3=B8ed=20Kristiansen?= Date: Mon, 27 Oct 2025 12:08:08 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20node=20v25=20needs=20libatomic1?= =?UTF-8?q?=20on=20debians?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/debian.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/debian.Dockerfile b/templates/debian.Dockerfile index bbdf3c1..a5d175d 100644 --- a/templates/debian.Dockerfile +++ b/templates/debian.Dockerfile @@ -9,8 +9,8 @@ RUN groupadd --gid 1000 pn && useradd --uid 1000 --gid pn --shell /bin/bash --cr ENV POETRY_HOME=/usr/local RUN \ -{% if distro_variant == "slim" %} apt-get update && apt-get install --no-install-recommends curl gnupg2 xz-utils -yqq && \ -{% endif %} apt-get upgrade -yqq && \ + apt-get update && apt-get install --no-install-recommends -yqq libatomic1{% if distro_variant == "slim" %} curl gnupg2 xz-utils{% endif %} && \ + apt-get upgrade -yqq && \ rm -rf /var/lib/apt/lists/* RUN NODE_VERSION="v{{ nodejs_canonical }}" \ ARCH= && dpkgArch="$(dpkg --print-architecture)" \