We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 846fc77 commit a46961dCopy full SHA for a46961d
1 file changed
deploy/docker/Dockerfile.dashboard
@@ -31,9 +31,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
31
esac \
32
&& curl -fsSL -o /tmp/grpcurl.tgz \
33
"https://github.com/fullstorydev/grpcurl/releases/download/v${GRPCURL_VERSION}/grpcurl_${GRPCURL_VERSION}_linux_${GRPCURL_ARCH}.tar.gz" \
34
- && tar -xzf /tmp/grpcurl.tgz -C /usr/local/bin grpcurl \
+ && tar -xzf /tmp/grpcurl.tgz --no-same-owner -C /usr/local/bin grpcurl \
35
&& chmod +x /usr/local/bin/grpcurl \
36
- && rm /tmp/grpcurl.tgz
+ && rm /tmp/grpcurl.tgz \
37
+ # Smoke-test the binary
38
+ && grpcurl -version
39
WORKDIR /app
40
COPY --from=deps /app/node_modules ./node_modules
41
COPY dashboard/ ./
0 commit comments