Skip to content
Snippets Groups Projects
Commit 51c5ab067d4e authored by François Ferry's avatar François Ferry
Browse files

fix: ensure that node is installed from nodesource

Since bullseye have a version 12, nodejs wasn't installed by nodesource.
parent 0c4149f2ff49
No related branches found
No related tags found
No related merge requests found
Pipeline #88038 passed
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
apt-transport-https apt-transport-https
RUN echo 'Acquire::https::Proxy::deb.nodesource.com DIRECT;' >> /etc/apt/apt.conf && \ RUN echo 'Acquire::https::Proxy::deb.nodesource.com DIRECT;' >> /etc/apt/apt.conf && \
echo "deb https://deb.nodesource.com/node_10.x bullseye main" > /etc/apt/sources.list.d/nodesource.list && \ echo "deb https://deb.nodesource.com/node_12.x bullseye main" > /etc/apt/sources.list.d/nodesource.list && \
wget https://deb.nodesource.com/gpgkey/nodesource.gpg.key -O - | apt-key --keyring /etc/apt/trusted.gpg.d/nodesource.gpg add - wget https://deb.nodesource.com/gpgkey/nodesource.gpg.key -O - | apt-key --keyring /etc/apt/trusted.gpg.d/nodesource.gpg add -
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment