4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-26 03:59:25 +00:00

Use Alpine stable again in Dockerfile (#1643)

* Use alpine stable again

* fix build for tgs.Dockerfile
This commit is contained in:
Sandro
2021-11-29 01:19:10 +01:00
committed by GitHub
parent df4d76e466
commit bd0516f09a
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ RUN apk add \
go \
git \
&& cd /go/src/matterbridge \
&& go build -mod vendor -ldflags "-X github.com/42wim/matterbridge/version.GitHash=$(git log --pretty=format:'%h' -n 1)" -o /bin/matterbridge
&& CGO_ENABLED=0 go build -mod vendor -ldflags "-X github.com/42wim/matterbridge/version.GitHash=$(git log --pretty=format:'%h' -n 1)" -o /bin/matterbridge
FROM alpine
RUN apk --no-cache add \