From cbc38cf8167a491ba29f3e31b11712d5ef5b934c Mon Sep 17 00:00:00 2001 From: LukasK13 Date: Mon, 24 Aug 2020 15:47:04 +0200 Subject: [PATCH] Comments added --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index e717185..de5773c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,13 @@ +# Derive docker image from debian base image FROM debian +# update package cache and isntall python 3 as well as pip 3 RUN apt-get update && apt-get install -y \ python3 \ python3-pip +# Install the module necessary for virtual environments RUN pip3 install virtualenv +# Use bash as entry point for the container CMD ["/bin/bash"] \ No newline at end of file