diff --git a/build/test/Dockerfile b/build/test/Dockerfile index 5caa6e87..7c58e4f8 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" @@ -35,6 +35,7 @@ RUN go mod download # copy source COPY pkg/ pkg/ +COPY res/ res/ COPY version/ version/ COPY build/test/entrypoint.sh .