From aacb0b9b97ea8ca7ca47c465c5d5ba8e549bf4a2 Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Mon, 9 Jul 2018 06:07:41 +0800 Subject: [PATCH] [Dockerfile] Fix command `From` to be `FROM` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 621ac3f..50c11ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ # Use Ubuntu Trusty Tahr as base image as we're using on Travis CI # I also tested with Ubuntu 16.04, should be good with it! -From ubuntu:14.04 +FROM ubuntu:14.04 LABEL maintainer="Peter Dave Hello " LABEL name="nvm-dev-env" LABEL version="latest"