Skip to content
Snippets Groups Projects
Commit e65532f7 authored by Julian's avatar Julian
Browse files

Fixed nodejs installation in meteor image

parent ad5972a2
No related branches found
No related tags found
No related merge requests found
Pipeline #14720 failed
...@@ -4,12 +4,16 @@ ENV METEOR_VERSION=2.5.6 ...@@ -4,12 +4,16 @@ ENV METEOR_VERSION=2.5.6
ENV METEOR_ALLOW_SUPERUSER=true ENV METEOR_ALLOW_SUPERUSER=true
ENV PATH=$PATH:/root/.meteor 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 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 echo 'deb https://deb.nodesource.com/node_14.x bullseye main' > /etc/apt/sources.list.d/nodesource-repo.list
RUN apt-get -qq update && \ RUN apt-get -qq update && \
apt-get -qq dist-upgrade && \ apt-get -qq install nodejs npm && \
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 clean && \ apt-get -qq clean && \
lsb_release -a && uname -a lsb_release -a && uname -a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment