arke/dockerfile

20 lines
269 B
Plaintext
Raw Normal View History

2020-01-21 22:37:55 +00:00
FROM alpine:3.11
2018-10-07 21:14:03 +00:00
LABEL maintainer "me@jowj.net"
RUN apk update
RUN apk add \
python3 \
2020-01-27 21:34:28 +00:00
python3-dev \
py-cryptography \
py3-openssl
2018-10-07 21:14:03 +00:00
RUN python3 -m pip install --upgrade pip \
2020-01-21 22:37:55 +00:00
&& pip3 install requests \
&& pip3 install whois
2018-10-07 21:14:03 +00:00
COPY ./ ./
2020-01-21 22:37:55 +00:00
CMD python3 ./arke.py