From 0b9e875c3f6997302e4e82718b4369daab69726a Mon Sep 17 00:00:00 2001 From: Barath Kumar R Date: Fri, 13 Nov 2020 10:54:58 +0530 Subject: [PATCH] Bug 1290 Update all dockerfiles to 18.04 Change-Id: Ibc3d0f8a6b2dd15d4ab2d0fc2508a5e36bc527f1 Signed-off-by: Barath Kumar R --- Dockerfile | 4 ++-- docker/Dockerfile | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index e7c221b..4fbfef7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,9 +17,9 @@ # 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 \ - libgnutls-dev debhelper apt-utils dh-make + libgnutls28-dev debhelper apt-utils dh-make \ No newline at end of file diff --git a/docker/Dockerfile b/docker/Dockerfile index 78643d4..f89dec2 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: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 - \ - && 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 -- 2.17.1