From 678a8279789ccb0a51958790bc52d53950a20dd7 Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Wed, 25 Aug 2021 15:42:17 +0800 Subject: [PATCH] [Dockerfile] Update dated base image from Ubuntu 16.04 to 18.04 --- Dockerfile | 3 +-- README.md | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0d71868..bc16629 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:16.04 +FROM ubuntu:18.04 LABEL maintainer="Peter Dave Hello " LABEL name="nvm-dev-env" LABEL version="latest" @@ -54,7 +54,6 @@ RUN apt update && \ curl \ git \ jq \ - realpath \ zsh \ ksh \ gcc-4.8 \ diff --git a/README.md b/README.md index a1b8449..9c37cd6 100644 --- a/README.md +++ b/README.md @@ -788,7 +788,7 @@ export NVM_DIR="$HOME/.nvm" ## Docker For Development Environment -To make the development and testing work easier, we have a Dockerfile for development usage, which is based on Ubuntu 16.04 base image, prepared with essential and useful tools for `nvm` development, to build the docker image of the environment, run the docker command at the root of `nvm` repository: +To make the development and testing work easier, we have a Dockerfile for development usage, which is based on Ubuntu 18.04 base image, prepared with essential and useful tools for `nvm` development, to build the docker image of the environment, run the docker command at the root of `nvm` repository: ```sh $ docker build -t nvm-dev .