diff --git a/build/sip/Dockerfile b/build/sip/Dockerfile index 61af72b1..921da867 100644 --- a/build/sip/Dockerfile +++ b/build/sip/Dockerfile @@ -29,6 +29,7 @@ COPY go.sum . RUN go mod download # copy source +COPY res/ res/ COPY cmd/ cmd/ COPY pkg/ pkg/ COPY version/ version/ diff --git a/build/test/Dockerfile b/build/test/Dockerfile index 5caa6e87..b604ef5c 100644 --- a/build/test/Dockerfile +++ b/build/test/Dockerfile @@ -21,7 +21,7 @@ WORKDIR /workspace # install deps RUN apt-get update && \ apt-get install -y \ - curl + curl libopus-dev RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then GOARCH=arm64; else GOARCH=amd64; fi && \ curl -L -o /tmp/go.tar.gz "https://go.dev/dl/go1.20.7.linux-$GOARCH.tar.gz" @@ -34,6 +34,7 @@ COPY go.sum . RUN go mod download # copy source +COPY res/ res/ COPY pkg/ pkg/ COPY version/ version/