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

Fix docker build

This commit is contained in:
Wim 2021-10-17 14:19:26 +02:00
parent a3a8a5769d
commit b98d56dcf6
No known key found for this signature in database
GPG Key ID: 5E423DA5C9AA63D4
2 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
FROM alpine AS builder
FROM alpine:edge AS builder
COPY . /go/src/matterbridge
RUN apk --no-cache add go git \
&& cd /go/src/matterbridge \
&& go build -mod vendor -ldflags "-X main.githash=$(git log --pretty=format:'%h' -n 1)" -o /bin/matterbridge
&& CGO_ENABLED=0 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 ca-certificates mailcap

View File

@ -16,7 +16,7 @@ import (
)
var (
version = "1.22.4-dev"
version = "1.23.0-dev"
githash string
flagConfig = flag.String("conf", "matterbridge.toml", "config file")