Dockerfile.xds_server 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Copyright 2021 The gRPC Authors
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. # Dockerfile for building //test/cpp/interop:xds_interop_client
  15. FROM phusion/baseimage:master@sha256:65ea10d5f757e5e86272625f8675d437dd83d8db64bdb429e2354d58f5462750
  16. RUN apt-get update -y && \
  17. apt-get install -y \
  18. build-essential \
  19. clang \
  20. python3 \
  21. python3-dev
  22. WORKDIR /workdir
  23. RUN ln -s /usr/bin/python3 /usr/bin/python
  24. RUN mkdir /artifacts
  25. COPY . .
  26. RUN tools/bazel build //test/cpp/interop:xds_interop_server
  27. RUN cp -rL /workdir/bazel-bin/test/cpp/interop/xds_interop_server /artifacts/
  28. FROM phusion/baseimage:master@sha256:65ea10d5f757e5e86272625f8675d437dd83d8db64bdb429e2354d58f5462750
  29. COPY --from=0 /artifacts ./
  30. ENV GRPC_VERBOSITY="DEBUG"
  31. ENV GRPC_TRACE="xds_client,xds_resolver,xds_cluster_manager_lb,cds_lb,eds_lb,xds_cluster_resolver_lb,priority_lb,weighted_target_lb,lrs_lb,xds_cluster_impl_lb,xds_server_config_fetcher"
  32. ENTRYPOINT ["/xds_interop_server"]