Closed filzrev closed 1 day ago
This PR update Dockerfile
What's changed
2.78.1
apt-get update
apt-get install
--update
--with-deps
symbolic link
.playwright
Test I've confirmed docker image successfully build. And docfx pdf command is works as expected with following steps.
docfx pdf
docker build ./ -t docfx docker run -it --rm --entrypoint /bin/bash docfx docfx init --yes docfx build docfx pdf
This PR update Dockerfile
What's changed
2.78.1
apt-get update
command. And useapt-get install
with--update
option instead (that is added on Ubuntu 24)--with-deps
options.symbolic link
steps. (Currently.playwright
directory is placed under bin)Test I've confirmed docker image successfully build. And
docfx pdf
command is works as expected with following steps.