initial commit
This commit is contained in:
commit
7cdc03749a
9
.editorconfig
Normal file
9
.editorconfig
Normal file
@ -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
|
3
.gitignore
vendored
Executable file
3
.gitignore
vendored
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
*~
|
||||||
|
.DS_Store
|
||||||
|
*.swp
|
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
FROM alpine:3.5
|
||||||
|
MAINTAINER Sebastian Hugentobler <sebastian@vanwa.ch>
|
||||||
|
|
||||||
|
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"]
|
Loading…
Reference in New Issue
Block a user