commit
23157e6ad6
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
|
go get -u github.com/xenolf/lego
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To build lego inside a Docker container, just run
|
||||||
|
```
|
||||||
|
docker build -t lego .
|
||||||
|
```
|
||||||
|
|
||||||
#### Features
|
#### Features
|
||||||
|
|
||||||
- Register with CA
|
- Register with CA
|
||||||
|
|
Loading…
Reference in a new issue