Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit b9d88310ea1e393aac171cfc52f5a6727475c1fe Author: Peter Dave Hello <hsu@peterdavehello.org> Date: Fri Jan 15 06:48:02 2021 +0000 Unify/sync apk index cache control in Dockerfile (#1352) The second stage is using a single `apk` command with `--no-cache` which is better. diff --git a/Dockerfile b/Dockerfile index ba83fde..3b53c75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17 +17 @@  FROM alpine AS builder    COPY . /go/src/github.com/42wim/matterbridge -RUN apk update && apk add go git gcc musl-dev \ +RUN apk --no-cache add go git gcc musl-dev \ && cd /go/src/github.com/42wim/matterbridge \ && export GOPATH=/go \ && go get \