diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..8f19ac2 --- /dev/null +++ b/dockerfile @@ -0,0 +1,14 @@ +FROM alpine:3.7 +LABEL maintainer "me@jowj.net" + +RUN apk update + +RUN apk add \ + python3 \ + python-dev + +RUN python3 -m pip install --upgrade pip + +COPY ./ ./ + +CMD python3 ./arke.py \ No newline at end of file