From e5f00aeb8812d93ee828160c98128dd172114274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerardo=20Marx=20Ch=C3=A1vez-Campos?= Date: Tue, 10 Nov 2020 02:24:01 +0000 Subject: [PATCH] Update Readme, adding Dockerfile code --- Readme.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Readme.md b/Readme.md index 3b01093..1fe6a0f 100644 --- a/Readme.md +++ b/Readme.md @@ -16,6 +16,16 @@ The key benefit of Docker is that it allows users to package an application with In this case we are going to create a new Docker image to work with. The image is based on **Ubuntu Bionic:18.04** and it is created using `docker build`, by using the next `Dockerfile`: ``` shell +# Ubuntu +FROM ubuntu:bionic +ENV UNAME="data-science-workflow" +MAINTAINER gmarxcc +LABEL version="0.1" +ARG DEBIAN_FRONTEND=noninteractive +ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 + +RUN apt-get update \ +&& apt-get install -y python3 curl ``` and calling the `docker build` command: