In PR #14129, a timeout of more than 1 hour is required in cloudbuild.yaml due to the number of python runtimes that are installed in the docker image as per the code snippet below.
|
RUN for PYTHON_VERSION in 3.9.23 3.10.18 3.11.13 3.12.11 3.13.5; do \ |
We should be able to significantly reduce the build time for .generator/Dockerfile by moving the installation of the python runtimes to a separate base image.
In PR #14129, a timeout of more than 1 hour is required in
cloudbuild.yamldue to the number of python runtimes that are installed in the docker image as per the code snippet below.google-cloud-python/.generator/Dockerfile
Line 42 in 598660e
We should be able to significantly reduce the build time for
.generator/Dockerfileby moving the installation of the python runtimes to a separate base image.