zeroshade commented on code in PR #41455:
URL: https://github.com/apache/arrow/pull/41455#discussion_r1585545169
##########
ci/docker/linux-apt-docs.dockerfile:
##########
@@ -48,16 +61,20 @@ RUN apt-get update -y && \
libxml2-dev \
meson \
ninja-build \
+ nodejs \
+ npm \
nvidia-cuda-toolkit \
openjdk-${jdk}-jdk-headless \
pandoc \
r-recommended=${r}* \
r-base=${r}* \
rsync \
ruby-dev \
+ sudo \
wget && \
apt-get clean && \
- rm -rf /var/lib/apt/lists/*
+ rm -rf /var/lib/apt/lists/* && \
+ npm install -g yarn @mermaid-js/mermaid-cli
Review Comment:
We should be setting
```
ENV CHROME_BIN="/usr/bin/chromium" \
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true"
```
before we install mermaid-cli so that puppeteer doesn't download its own
chromium binary, changing `CHROME_BIN`'s value to wherever Debian installs it
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]