Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit aff9f15f16eb008999fe3be39d659e38269b1898 Author: Sandro <sandro.jaeckel@gmail.com> Date: Mon May 03 23:47:36 2021 +0000 Follow up to 24b9db1d4b33b977c3c0663daf4a9781c9c49888 for the tgs.Dockerfile (#1448) diff --git a/tgs.Dockerfile b/tgs.Dockerfile index 06bbb34..f39b821 100644 --- a/tgs.Dockerfile +++ b/tgs.Dockerfile @@ -115 +111 @@  FROM alpine AS builder   -COPY . /go/src/github.com/42wim/matterbridge +COPY . /go/src/matterbridge  RUN apk add \ go \ git \ - gcc \ - musl-dev \ - && cd /go/src/github.com/42wim/matterbridge \ - && export GOPATH=/go \ - && go get \ - && go build -x -ldflags "-X main.githash=$(git log --pretty=format:'%h' -n 1)" -o /bin/matterbridge + && cd /go/src/matterbridge \ + && go build -mod vendor -ldflags "-X main.githash=$(git log --pretty=format:'%h' -n 1)" -o /bin/matterbridge    FROM alpine  RUN apk --no-cache add \