From 60b02ccac11fd24b942e7019098b8e8fd62f54fa Mon Sep 17 00:00:00 2001 From: Ethan Roseman Date: Wed, 22 Apr 2020 15:49:34 -0400 Subject: [PATCH] Iniital Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 940951401a..6399b3e1fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ RUN apt-get update && \ build-essential \ pkg-config \ python3 \ + python3-pip \ wget \ git \ unzip @@ -17,5 +18,7 @@ RUN wget \ dpkg -i qemu.deb && \ rm qemu.deb +RUN python3 -m pip install --user colorama ansiwrap attrs watchdog python-Levenshtein + RUN mkdir /oot WORKDIR /oot