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_authz"]