summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/xenolf/lego/Dockerfile
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2018-02-19 11:19:39 +0000
committerGeorge Goldberg <george@gberg.me>2018-02-19 11:19:39 +0000
commitf8289eb286d00c29859a8df495b957c7b46cb249 (patch)
tree1bc18d6a3a795482c7229786f7ab427fabbcd007 /vendor/github.com/xenolf/lego/Dockerfile
parent8891fa2a5e9e08eb9fa99ec163c47a6e9761a816 (diff)
parent30197584d5a215a3b25bffa79a034ed9e360cf52 (diff)
downloadchat-f8289eb286d00c29859a8df495b957c7b46cb249.tar.gz
chat-f8289eb286d00c29859a8df495b957c7b46cb249.tar.bz2
chat-f8289eb286d00c29859a8df495b957c7b46cb249.zip
Merge branch 'master' into advanced-permissions-phase-1
Diffstat (limited to 'vendor/github.com/xenolf/lego/Dockerfile')
-rw-r--r--vendor/github.com/xenolf/lego/Dockerfile15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/xenolf/lego/Dockerfile b/vendor/github.com/xenolf/lego/Dockerfile
deleted file mode 100644
index 511e403ce..000000000
--- a/vendor/github.com/xenolf/lego/Dockerfile
+++ /dev/null
@@ -1,15 +0,0 @@
-FROM alpine:3.6
-
-ENV GOPATH /go
-ENV LEGO_VERSION tags/v0.4.1
-
-RUN apk update && apk add --no-cache --virtual run-dependencies ca-certificates && \
- apk add --no-cache --virtual build-dependencies go git musl-dev && \
- go get -u github.com/xenolf/lego && \
- cd ${GOPATH}/src/github.com/xenolf/lego && \
- git checkout ${LEGO_VERSION} && \
- go build -o /usr/bin/lego . && \
- apk del build-dependencies && \
- rm -rf ${GOPATH}
-
-ENTRYPOINT [ "/usr/bin/lego" ]