We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9ba49c commit 7ffcfcdCopy full SHA for 7ffcfcd
.generator/Dockerfile
@@ -126,6 +126,12 @@ rm -rf /tmp/gapic-generator-python
126
RUN git clone --depth 1 https://github.com/googleapis/synthtool.git /tmp/synthtool && \
127
python3.9 -m pip install /tmp/synthtool nox starlark-pyo3>=2025.1
128
129
+# Download/install pandoc
130
+RUN wget https://github.com/jgm/pandoc/releases/download/3.7.0.2/pandoc-3.7.0.2-linux-amd64.tar.gz
131
+RUN tar -xvf pandoc-3.7.0.2-linux-amd64.tar.gz
132
+RUN mv pandoc-3.7.0.2/bin/* /usr/local/bin/
133
+
134
135
# Copy the CLI script into the container.
136
COPY .generator/cli.py .
137
RUN chmod a+rx ./cli.py
0 commit comments