From: Barath Kumar R Date: Fri, 30 Apr 2021 05:48:40 +0000 (+0530) Subject: Updated the node package X-Git-Tag: v11.0.0~3 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F22%2F10722%2F1;hp=31b3a80ba77bded74b9af8782180f6005f932298;p=osm%2FSOL005.git Updated the node package * To install npm, needed node >=10 version Change-Id: I1627c29dae17d1a5c83af9c961dec2b26947c5bd Signed-off-by: Barath Kumar R --- diff --git a/Dockerfile b/Dockerfile index 8cc0a7d..5aa23bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,8 +17,11 @@ FROM ubuntu:18.04 -RUN apt-get update && apt-get install -y git build-essential nodejs npm -RUN npm install -g npm@latest +RUN apt-get update && apt-get install -y git build-essential curl \ + && 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 && apt-get install -y nodejs RUN npm install --save @openapi-contrib/json-schema-to-openapi-schema RUN npm install -g swagger-cli RUN npm install -g speccy