blob: 579ddd16f2fce249ccfade8e5264879fa1985625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FROM ubuntu:latest
ENV UUID=null
RUN apt update && apt install python3.5 python3-pip -y
RUN pip3 install pip --upgrade
ADD . /root
WORKDIR /root/
RUN pip3 install -r requirements.txt --upgrade
RUN pip3 install dist/moon_utilities-1.3.0-py3-none-any.whl --upgrade
RUN pip3 install .
CMD ["python3", "-m", "moon_authz"]
|