summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 0adfd96c1551f9fc7643183568907bc9d4a95a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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