From b133f6619d51884189dffeff4b9122fc8262b365 Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Wed, 7 Sep 2022 16:36:29 +0800 Subject: [PATCH] [Dockerfile] Update base image from Ubuntu 18.04 to 20.04, cc #2877 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index bc16629..0055be6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ # Please note that it'll use about 1.2 GB disk space and about 15 minutes to # build this image, it depends on your hardware. -FROM ubuntu:18.04 +FROM ubuntu:20.04 LABEL maintainer="Peter Dave Hello " LABEL name="nvm-dev-env" LABEL version="latest" @@ -56,8 +56,8 @@ RUN apt update && \ jq \ zsh \ ksh \ - gcc-4.8 \ - g++-4.8 \ + gcc \ + g++ \ xz-utils \ build-essential \ bash-completion && \