From 4f1334c25d573151e3d226f2f53b5734a2649127 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sat, 25 Jan 2020 14:56:17 +0000 Subject: [PATCH] Initial commit Signed-off-by: Luke Tainton --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e0de721 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM alpine:latest +LABEL maintainer="Luke Tainton " +ARG DOCUMIZE_VERSION=v3.6.0 +RUN apk add --no-cache curl +WORKDIR / +RUN curl -L -o documize "https://github.com/documize/community/releases/download/${DOCUMIZE_VERSION}/documize-community-linux-amd64" && chmod 755 documize +ENTRYPOINT ["/documize -port 80"] +EXPOSE 80 \ No newline at end of file