aboutsummaryrefslogtreecommitdiffstats
path: root/moon_orchestrator/Dockerfile
blob: e9f8309418873c6167134c09d70ea9febb7752b1 (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_orchestrator"]