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