Files
grpc/examples/python/xds/Dockerfile.client
Kannan J 9c99dc2f9c [Documentation] Create docker file for xds example server and client for Python (#37779)
This will help us quote Xds examples in user guides without having to
involve observability examples only which are dockerized today.
2025-05-16 10:06:36 -07:00

27 lines
654 B
Docker

FROM python:3.9-slim-bookworm
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl
WORKDIR /workdir
RUN ln -s /usr/bin/python3 /usr/bin/python
RUN mkdir /artifacts
COPY . .
RUN tools/bazel build //examples/python/xds:xds_greeter_client
RUN cp -rL /workdir/bazel-bin/examples/python/xds/xds_greeter_client* /artifacts/
FROM python:3.9-slim-bookworm
RUN apt-get update -y \
&& apt-get install -y python3 \
&& apt-get -y autoremove \
&& apt-get install -y curl \
&& rm -rf /var/lib/apt/lists/*
RUN ln -s /usr/bin/python3 /usr/bin/python
COPY --from=0 /artifacts ./
ENTRYPOINT ["/xds_greeter_client"]