aboutsummaryrefslogtreecommitdiffstats
path: root/moonv4/moon_orchestrator/Dockerfile
blob: 9c1b4662548b0b5e8aec1f7eb68985d2004ce741 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM debian:latest

RUN apt update && apt install python3.5 python3-pip -y
RUN pip3 install moon_utilities moon_db pip --upgrade

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

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