1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 05:09:42 +02:00

Update Go modules/vendor directory

Closes #368
This commit is contained in:
HarveyKandola 2020-02-15 15:42:54 +00:00
parent ab95fcc64d
commit cdc7489659
19 changed files with 3373 additions and 1077 deletions

View file

@ -1,7 +1,7 @@
FROM golang:1.12-alpine as builder
COPY . /go/src/github.com/documize/community
RUN cd /go/src/github.com/documize/community
RUN env GOOS=linux GOARCH=amd64 GODEBUG=tls13=1 go build -o bin/documize-community-linux-amd64 ./edition/community.go
RUN env GOOS=linux GOARCH=amd64 GODEBUG=tls13=1 go build -mod=vendor -o bin/documize-community-linux-amd64 ./edition/community.go
# build release image
FROM alpine:3.10