5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 16:59:34 +00:00

Optimize Dockerfile (#1361)

This commit is contained in:
Wim 2021-01-15 22:44:01 +01:00 committed by GitHub
parent 207cd24edb
commit 536823ce55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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