Comments added

This commit is contained in:
Lukas Klass 2020-08-24 15:47:04 +02:00
parent c334966071
commit cbc38cf816
1 changed files with 4 additions and 0 deletions

View File

@ -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"]