Lines Matching +full:python +full:- +full:artifacts
1 FROM python:3.9-slim-bookworm
3 RUN apt-get update -y && apt-get upgrade -y && apt-get install -y build-essential clang curl
7 RUN ln -s /usr/bin/python3 /usr/bin/python
8 RUN mkdir /artifacts
11 RUN tools/bazel build -c dbg //examples/python/observability/csm:csm_greeter_server
12 RUN cp -rL /workdir/bazel-bin/examples/python/observability/csm/csm_greeter_server* /artifacts/
14 FROM python:3.9-slim-bookworm
16 RUN apt-get update -y \
17 && apt-get install -y python3 \
18 && apt-get -y autoremove \
19 && apt-get install -y curl \
20 && rm -rf /var/lib/apt/lists/*
22 RUN ln -s /usr/bin/python3 /usr/bin/python
24 COPY --from=0 /artifacts ./