arke/dockerfile

15 lines
215 B
Plaintext
Raw Normal View History

2018-10-07 21:14:03 +00:00
FROM alpine:3.7
LABEL maintainer "me@jowj.net"
RUN apk update
RUN apk add \
python3 \
python-dev
2018-10-07 21:14:03 +00:00
RUN python3 -m pip install --upgrade pip \
&& pip3 install requests
2018-10-07 21:14:03 +00:00
COPY ./ ./
CMD python3 ./arke.py