forked from TrueCloudLab/lego
Add Dockerfile
This enables users to build, ship and run lego with Docker.
This commit is contained in:
parent
157111fd1d
commit
94509ee581
2 changed files with 22 additions and 0 deletions
17
Dockerfile
Normal file
17
Dockerfile
Normal file
|
@ -0,0 +1,17 @@
|
|||
FROM alpine:3.3
|
||||
|
||||
ENV GOPATH /go
|
||||
|
||||
RUN apk update && apk add ca-certificates go git && \
|
||||
rm -rf /var/cache/apk/*
|
||||
|
||||
COPY . /go/src/github.com/xenolf/lego
|
||||
|
||||
RUN cd /go/src/github.com/xenolf/lego && \
|
||||
go get ./... && \
|
||||
go build -o /usr/bin/lego . && \
|
||||
apk del ca-certificates go git && \
|
||||
rm -rf /var/cache/apk/* && \
|
||||
rm -rf /go
|
||||
|
||||
ENTRYPOINT [ "/usr/bin/lego" ]
|
|
@ -19,6 +19,11 @@ To install from source, just run
|
|||
go get -u github.com/xenolf/lego
|
||||
```
|
||||
|
||||
To build lego inside a Docker container, just run
|
||||
```
|
||||
docker build -t lego .
|
||||
```
|
||||
|
||||
#### Features
|
||||
|
||||
- Register with CA
|
||||
|
|
Loading…
Reference in a new issue