1
0
mirror of https://github.com/go-acme/lego.git synced 2024-11-25 00:56:20 +02:00
lego/Dockerfile

17 lines
398 B
Docker
Raw Normal View History

FROM golang:alpine3.9 as builder
2018-11-05 16:14:30 +02:00
RUN apk --update upgrade \
2019-04-18 19:44:44 +02:00
&& apk --no-cache --no-progress add make git
2019-03-11 18:56:48 +02:00
WORKDIR /go/src/github.com/go-acme/lego
COPY . .
2018-11-05 18:54:38 +02:00
RUN make build
FROM alpine:3.9
2019-04-18 19:44:44 +02:00
RUN apk update \
&& apk add --no-cache ca-certificates tzdata \
&& update-ca-certificates
2019-03-11 18:56:48 +02:00
COPY --from=builder /go/src/github.com/go-acme/lego/dist/lego /usr/bin/lego
ENTRYPOINT [ "/usr/bin/lego" ]