Fix Bug 1888: Update Docker file to 20.04 06/11806/1
authorSANDHYA.JS <sandhya.j@tataelxsi.co.in>
Thu, 31 Mar 2022 03:26:04 +0000 (08:56 +0530)
committerSANDHYA.JS <sandhya.j@tataelxsi.co.in>
Thu, 31 Mar 2022 03:26:04 +0000 (08:56 +0530)
- NG-UI docker file base image is updated to Ubuntu 20.04

Change-Id: I825f48994ce91d3735d941c07d0d11595f786a61
Signed-off-by: SANDHYA.JS <sandhya.j@tataelxsi.co.in>
docker/Dockerfile

index c554f50..ff8017d 100644 (file)
 #
 # Author: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in), VIJAY NAG (vijaynag.bs@tataelxsi.co.in)
 
-FROM ubuntu:18.04
+FROM ubuntu:20.04
 # Installing node dependencies.
 RUN apt-get update && apt-get install -y curl xz-utils gnupg2 \
     && apt-get update && apt-get install -y apt-transport-https \
     && 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 \
+    && echo "deb https://deb.nodesource.com/node_14.x focal main" | tee -a /etc/apt/sources.list.d/nodesource.list \
+    && echo "deb-src https://deb.nodesource.com/node_14.x focal main" | tee -a /etc/apt/sources.list.d/nodesource.list \
     && apt-get update && apt-get install -y nodejs \
     && apt-get install -y nginx