From 5fab3115daf2b5faaf20b0bf9e1047fc2a311895 Mon Sep 17 00:00:00 2001 From: Alex Sharov <AskAlexSharov@gmail.com> Date: Sun, 4 Oct 2020 10:40:01 +0700 Subject: [PATCH] build libzstd.a for musl (#1181) --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6ba81180b7..d46bbc0917 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,9 @@ WORKDIR /app COPY go.mod go.sum ./ RUN go mod download +# https://github.com/valyala/gozstd/issues/20#issuecomment-557499034 +RUN GOZSTD_VER=$(cat go.mod | fgrep github.com/valyala/gozstd | awk '{print $NF}'); cd ${GOPATH}/pkg/mod/github.com/valyala/gozstd@${GOZSTD_VER}; if [[ ! -f _rebuilt ]]; then chmod -R +w .; make -j8 clean; make -j8 libzstd.a; touch _rebuilt; fi; + ADD . . RUN make all -- GitLab