5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00

Follow up to 536823ce55 for the tgs.Dockerfile (#1448)

This commit is contained in:
Sandro 2021-05-03 23:47:36 +02:00 committed by GitHub
parent af77109a47
commit af543dcd05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,11 @@
FROM alpine AS builder FROM alpine AS builder
COPY . /go/src/github.com/42wim/matterbridge COPY . /go/src/matterbridge
RUN apk add \ RUN apk add \
go \ go \
git \ git \
gcc \ && cd /go/src/matterbridge \
musl-dev \ && go build -mod vendor -ldflags "-X main.githash=$(git log --pretty=format:'%h' -n 1)" -o /bin/matterbridge
&& 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
FROM alpine FROM alpine
RUN apk --no-cache add \ RUN apk --no-cache add \