FROM alpine:3.11 LABEL maintainer "me@jowj.net" RUN apk update RUN apk add \ python3 \ python-dev \ py-cryptography RUN python3 -m pip install --upgrade pip \ && pip3 install requests \ && pip3 install whois \ && pip3 install pyopenssl COPY ./ ./ CMD python3 ./arke.py