summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Dockerfile9
1 files changed, 2 insertions, 7 deletions
diff --git a/Dockerfile b/Dockerfile
index 0adfd96..52b3b92 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,15 +3,10 @@ FROM andreacensi/act4e:spring2021
WORKDIR /ACT4E
COPY requirements.txt .
-RUN pip install -r requirements.txt
+RUN python3 -m pip install -r requirements.txt
COPY src src
COPY setup.py .
-
-#RUN git clone --branch spring2021 https://github.com/idsc-frazzoli/ACT4E-exercises.git
-#RUN cd ACT4E-exercises && python setup.py develop
-
-
-RUN python setup.py develop
+RUN python3 -m pip install -e .