ESBO-ETC/Dockerfile

9 lines
133 B
Docker
Raw Normal View History

2020-07-21 11:22:31 +02:00
FROM debian
RUN apt-get update && apt-get install -y \
2020-07-21 13:23:51 +02:00
python3 \
2020-07-21 13:34:07 +02:00
python3-pip
2020-07-21 11:22:31 +02:00
2020-07-21 13:34:07 +02:00
RUN pip3 install virtualenv
2020-07-21 11:22:31 +02:00
CMD ["/bin/bash"]