From 0e954c8805fab9658c4a342b81b9c41d109a9d50 Mon Sep 17 00:00:00 2001 From: chintan Date: Tue, 4 May 2021 16:39:50 +0000 Subject: [PATCH] Upgrade ubuntu --- packaging/enroute-cp/Dockerfile.gw | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packaging/enroute-cp/Dockerfile.gw b/packaging/enroute-cp/Dockerfile.gw index 7b34eb4..bfc38e9 100644 --- a/packaging/enroute-cp/Dockerfile.gw +++ b/packaging/enroute-cp/Dockerfile.gw @@ -21,17 +21,19 @@ # (3.2.1) Migration script runs hasura temporarily and then kills it. # (3.3) Start hasura -FROM ubuntu:18.04 +FROM ubuntu:groovy-20210325.1 WORKDIR /bin # 1.1 ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y software-properties-common +RUN apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 40976EAF437D05B5 +RUN apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 3B4FE6ACC0B21F32 RUN add-apt-repository "deb http://security.ubuntu.com/ubuntu xenial-security main" RUN apt-get update && apt-get install -y gnupg2 libicu55 RUN apt-key adv --no-tty --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8 -RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main" > /etc/apt/sources.list.d/pgdg.list +RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ groovy-pgdg main" > /etc/apt/sources.list.d/pgdg.list RUN apt-get update && apt-get install -y software-properties-common postgresql-11 postgresql-client-11 postgresql-contrib-11 #1.2