mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 23:40:27 +00:00
Optimize Dockerfile (#1361)
This commit is contained in:
parent
207cd24edb
commit
536823ce55
10
Dockerfile
10
Dockerfile
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user