From eb47ee8312d7507397557b497eb3f7eafbd12922 Mon Sep 17 00:00:00 2001 From: jowj Date: Sun, 7 Oct 2018 16:14:03 -0500 Subject: [PATCH] Add starting dockerfile template. --- dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 dockerfile 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