From 332d68fc5f22cabf75c0c1968a70498937a60928 Mon Sep 17 00:00:00 2001 From: Michael Thies <m.thies@plt.rwth-aachen.de> Date: Mon, 20 Jul 2020 16:33:02 +0200 Subject: [PATCH] Change base image of build-essential (base of all images) to ubuntu 20.04 --- build-essential/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-essential/Dockerfile b/build-essential/Dockerfile index e9fc48c..c3aed8a 100644 --- a/build-essential/Dockerfile +++ b/build-essential/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:19.04 +FROM ubuntu:20.04 RUN ln -fs /usr/share/zoneinfo/Europe/Berlin /etc/localtime RUN apt-get update -qq && apt-get install -y -qq --no-install-recommends gcc g++ libc-dev make cmake git ca-certificates && rm -rf /var/lib/apt/lists/* -- GitLab