commit 7cdc03749a0e52d714ee1cbf4564a71e680e5a1b Author: Sebastian Hugentobler Date: Tue Jan 10 11:05:37 2017 +0100 initial commit diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d741e40 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space +indent_size = 4 diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..af0faab --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*~ +.DS_Store +*.swp diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4fe027d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM alpine:3.5 +MAINTAINER Sebastian Hugentobler + +ENV S6_OVERLAY_VERSION=v1.18.1.5 + +RUN apk --no-cache add libressl +RUN wget -qO- https://github.com/just-containers/s6-overlay/releases/download/$S6_OVERLAY_VERSION/s6-overlay-amd64.tar.gz | tar -xz -C / +RUN apk del libressl + +ENTRYPOINT ["/init"]