blob: 52b3b92b2f750203848cf7c24729cefa065c0c4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM 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 .
|