We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93c1a0b commit 3ed45fcCopy full SHA for 3ed45fc
.generator/Dockerfile
@@ -111,6 +111,10 @@ COPY --from=builder /usr/local/lib/python3.13 /usr/local/lib/python3.13
111
# Set the working directory in the container.
112
WORKDIR /app
113
114
+# Install dependencies of the CLI such as click.
115
+# Install gapic-generator which is used to generate libraries.
116
+# Install nox which is used for running client library tests.
117
+# Install starlark-pyo3 which is used to parse BUILD.bazel files.
118
COPY .generator/requirements.in .
119
RUN python3.9 -m pip install -r requirements.in
120
RUN python3.9 -m pip install /synthtool
0 commit comments