Lines Matching +full:debian +full:- +full:clang
7 # http://www.apache.org/licenses/LICENSE-2.0
20 FROM debian:bullseye as build
22 RUN apt-get update && apt-get install -y clang curl git
34 # - Copy only the necessary files to reduce Docker image size.
35 # - Have an ENTRYPOINT script which will launch the interop test client or server
39 FROM debian:bullseye
46 COPY --from=build /grpc/etc/roots.pem .
49 WORKDIR /grpc/bazel-bin/test/cpp/interop
50 COPY --from=build /grpc/bazel-bin/test/cpp/interop/observability_interop_server .
51 COPY --from=build /grpc/bazel-bin/test/cpp/interop/observability_interop_client .
53 WORKDIR /grpc/tools/dockerfile/observability-test/cpp
54 COPY --from=build /grpc/tools/dockerfile/observability-test/cpp/run.sh .
56 ENTRYPOINT ["/grpc/tools/dockerfile/observability-test/cpp/run.sh"]