From eb5228bc27bbba2638ca2fe7c6f17e2f65ad59e7 Mon Sep 17 00:00:00 2001 From: "SANDHYA.JS" Date: Thu, 31 Mar 2022 08:56:04 +0530 Subject: [PATCH] Fix Bug 1888: Update Docker file to 20.04 - NG-UI docker file base image is updated to Ubuntu 20.04 Change-Id: I825f48994ce91d3735d941c07d0d11595f786a61 Signed-off-by: SANDHYA.JS --- docker/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index c554f50..ff8017d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,13 +15,13 @@ # # 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 -- 2.17.1