diff options
author | Andrea Censi <acensi@ethz.ch> | 2021-02-20 15:49:00 +0100 |
---|---|---|
committer | Andrea Censi <acensi@ethz.ch> | 2021-02-20 15:49:00 +0100 |
commit | 09c136f6f3cde7ed6a750dec0ac73fcec03e9472 (patch) | |
tree | 00ebff80766f84ea20aace7a62d853c80ed3d786 /Dockerfile | |
download | act4e-09c136f6f3cde7ed6a750dec0ac73fcec03e9472.tar.gz act4e-09c136f6f3cde7ed6a750dec0ac73fcec03e9472.zip |
First
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0adfd96 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM andreacensi/act4e:spring2021 + +WORKDIR /ACT4E + +COPY requirements.txt . +RUN 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 + |