From e65532f73060d4a8b69d8cda6210be53d4364859 Mon Sep 17 00:00:00 2001 From: Julian <julian@cccv.de> Date: Thu, 3 Mar 2022 01:58:45 +0000 Subject: [PATCH] Fixed nodejs installation in meteor image --- Dockerfile.meteor | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile.meteor b/Dockerfile.meteor index 6a673bf..4a7361f 100644 --- a/Dockerfile.meteor +++ b/Dockerfile.meteor @@ -4,12 +4,16 @@ ENV METEOR_VERSION=2.5.6 ENV METEOR_ALLOW_SUPERUSER=true ENV PATH=$PATH:/root/.meteor +RUN apt-get -qq update && \ + apt-get -qq dist-upgrade && \ + apt-get -qq install lsb-release curl wget ca-certificates debhelper apt-utils libarchive-tools gnupg bzip2 g++ build-essential git python3 && \ + lsb_release -a && uname -a + COPY nodesource.gpg.key /etc/apt/trusted.gpg.d/nodesource-repo.asc RUN echo 'deb https://deb.nodesource.com/node_14.x bullseye main' > /etc/apt/sources.list.d/nodesource-repo.list RUN apt-get -qq update && \ - apt-get -qq dist-upgrade && \ - apt-get -qq install lsb-release curl wget ca-certificates debhelper apt-utils libarchive-tools gnupg bzip2 g++ build-essential git python3 nodejs npm && \ + apt-get -qq install nodejs npm && \ apt-get -qq clean && \ lsb_release -a && uname -a -- GitLab