mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
chore: migrate to go module (v3.0.0)
- chore: update dependencies: use version with go modules. - chore: remove dep. - chore: update backoff imports. - chore: init go module. - chore: update CI. - chore: mod v3 - chore: update docker image.
This commit is contained in:
parent
99bf9f4e8f
commit
e7a90b9471
2562 changed files with 880 additions and 712689 deletions
|
|
@ -1,13 +1,12 @@
|
|||
FROM golang:alpine3.9 as builder
|
||||
FROM golang:1.12-alpine3.10 as builder
|
||||
|
||||
RUN apk --update upgrade \
|
||||
&& apk --no-cache --no-progress add make git
|
||||
RUN apk --no-cache --no-progress add make git
|
||||
|
||||
WORKDIR /go/src/github.com/go-acme/lego
|
||||
COPY . .
|
||||
RUN make build
|
||||
|
||||
FROM alpine:3.9
|
||||
FROM alpine:3.10
|
||||
RUN apk update \
|
||||
&& apk add --no-cache ca-certificates tzdata \
|
||||
&& update-ca-certificates
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue