blob: 8377abda8c2d435fb10578a2c182eb635d370950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM docker.io/andreacensi/act4e:spring2021
WORKDIR /ACT4E
COPY requirements.txt .
RUN python3 -m pip install -r requirements.txt
COPY src src
COPY setup.py .
RUN python3 -m pip install -e .
|