diff options
author | Andrea Censi <acensi@ethz.ch> | 2021-09-29 14:10:36 +0200 |
---|---|---|
committer | Andrea Censi <acensi@ethz.ch> | 2021-09-29 14:10:36 +0200 |
commit | 3c9abcd978bb07c00f95811782c609b6eb613207 (patch) | |
tree | aa2682aec9832b8aa73799918ed832f520574ae5 /Dockerfile | |
parent | Bump to version 7.1.2104061654 (diff) | |
download | act4e-3c9abcd978bb07c00f95811782c609b6eb613207.tar.gz act4e-3c9abcd978bb07c00f95811782c609b6eb613207.zip |
misc
Diffstat (limited to '')
-rw-r--r-- | Dockerfile | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -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 . |