Bug 1290 Update all dockerfiles to 18.04 96/9996/1
authorBarath Kumar R <barath.r@tataelxsi.co.in>
Fri, 13 Nov 2020 05:24:58 +0000 (10:54 +0530)
committerBarath Kumar R <barath.r@tataelxsi.co.in>
Mon, 16 Nov 2020 15:38:32 +0000 (21:08 +0530)
Change-Id: Ibc3d0f8a6b2dd15d4ab2d0fc2508a5e36bc527f1
Signed-off-by: Barath Kumar R <barath.r@tataelxsi.co.in>
Dockerfile
docker/Dockerfile

index e7c221b..4fbfef7 100644 (file)
@@ -17,9 +17,9 @@
 # Use Dockerfile.fromdeb for running osm/NBI in a docker container from last stable package
 
 
 # Use Dockerfile.fromdeb for running osm/NBI in a docker container from last stable package
 
 
-FROM ubuntu:16.04
+FROM ubuntu:18.04
 
 RUN apt-get update && apt-get -y install git make libcurl4-gnutls-dev \
 
 RUN apt-get update && apt-get -y install git make libcurl4-gnutls-dev \
-    libgnutls-dev debhelper apt-utils dh-make
+    libgnutls28-dev debhelper apt-utils dh-make
        
        
\ No newline at end of file
        
        
\ No newline at end of file
index 78643d4..f89dec2 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)
 
 #
 # 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:16.04
+FROM ubuntu:18.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 - \
 # 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 xenial main" | tee -a /etc/apt/sources.list.d/nodesource.list \
-    && echo "deb-src https://deb.nodesource.com/node_10.x xenial main" | tee -a /etc/apt/sources.list.d/nodesource.list \
+    && 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 \
     && apt-get install -y nginx
 
     && apt-get update && apt-get install -y nodejs \
     && apt-get install -y nginx