Skip to content
Snippets Groups Projects
Commit 8d5ac8aa authored by fonsecaj's avatar fonsecaj
Browse files

Fixes Bug 1429: Add a different way to install nodejs


Change-Id: Ica1150cb1f85e9706d2259904fd5ddc483b48754
Signed-off-by: default avatarfonsecaj <jpedrofonseca@av.it.pt>
(cherry picked from commit 988b7868)
parent 055ae2da
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@ FROM ubuntu:18.04
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y curl \
software-properties-common \
apt-transport-https \
git \
python-pip \
nginx \
......@@ -27,7 +28,14 @@ RUN apt-get update \
mysql-client \
libssl-dev \
apt-utils \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y npm
&& curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - \
&& echo "deb https://deb.nodesource.com/node_10.x bionic main" | tee -a /etc/apt/sources.list.d/nodesource.list \
&& echo "deb-src https://deb.nodesource.com/node_10.x bionic main" | tee -a /etc/apt/sources.list.d/nodesource.list \
&& apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y nodejs
RUN node -v
RUN npm -v
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
......
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