blob: 82160cc9b29f600e85a19e869d2f30057e2e865b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM ubuntu:latest
RUN apt update && apt install python3.5 python3-pip -y
RUN pip3 install python_moonutilities python_moondb pip --upgrade
ADD . /root
WORKDIR /root/
RUN pip3 install -r requirements.txt --upgrade
#RUN pip3 install /root/dist/* --upgrade
RUN pip3 install .
CMD ["python3", "-m", "moon_interface"]
|