Fixes Bug 1429: Add a different way to install nodejs
[osm/devops.git] / docker / light-ui / Dockerfile
index d855aae..eee9416 100644 (file)
@@ -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