Browse Source

Update Readme, adding Dockerfile code

master
parent
commit
e5f00aeb88
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      Readme.md

+ 10
- 0
Readme.md View File

@ -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`: 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 ``` 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: and calling the `docker build` command:


Loading…
Cancel
Save