Merge pull request #166 from moul/renovate/docker-all

chore(deps): update all docker tags
This commit is contained in:
Manfred Touron 2020-11-17 10:34:45 +01:00 committed by GitHub
commit f4bcee51a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
# builder # builder
FROM golang:1.14-alpine as builder FROM golang:1.15-alpine as builder
RUN apk --no-cache add make git go rsync libc-dev RUN apk --no-cache add make git go rsync libc-dev
RUN go get -u golang.org/x/tools/cmd/goimports RUN go get -u golang.org/x/tools/cmd/goimports
RUN go get -u github.com/gobuffalo/packr/v2/packr2 RUN go get -u github.com/gobuffalo/packr/v2/packr2
@ -10,7 +10,7 @@ RUN go install -a -tags netgo -ldflags '-w -extldflags "-static"' . ./cmd/we
RUN ls -la /go/bin RUN ls -la /go/bin
# runtime # runtime
FROM znly/protoc:0.3.0 FROM znly/protoc:0.4.0
COPY --from=builder /go/bin/web-editor /go/bin/ COPY --from=builder /go/bin/web-editor /go/bin/
COPY --from=builder /go/bin/protoc-gen-gotemplate /go/bin/ COPY --from=builder /go/bin/protoc-gen-gotemplate /go/bin/
ENV PATH=$PATH:/go/bin ENV PATH=$PATH:/go/bin