aboutsummaryrefslogtreecommitdiffstats
path: root/moon_wrapper/Dockerfile
blob: 77ffaee9fcda13588f2088c0a30494cc13b14af8 (plain)
1
2
3
4
5
6
7
8
FROM python:3

ADD . /root
WORKDIR /root/
RUN pip3 install -r requirements.txt
RUN pip3 install .

CMD ["python3", "-m", "moon_wrapper"]