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