Closed abrom closed 3 years ago
I was having some issues downloading the openvas reports as PDF (downloaded PDF was 0 bytes) and found the cause was some missing latex packages in the gvmd container. I resolved it with:
gvmd
sudo docker exec -it gvmd /bin/bash apt-get update apt-get install -y texlive-latex-extra --no-install-recommends apt-get install -y texlive-fonts-recommended
Not sure if that's necessarily something you'd want to include in the base install, but might be useful for others
I've confirmed this problem too. @abrom 's workaround was effective(solved this problem).
I think these missing packages should be included Docker image.
should be fixed in master
I was having some issues downloading the openvas reports as PDF (downloaded PDF was 0 bytes) and found the cause was some missing latex packages in the
gvmd
container. I resolved it with:sudo docker exec -it gvmd /bin/bash apt-get update apt-get install -y texlive-latex-extra --no-install-recommends apt-get install -y texlive-fonts-recommended
Not sure if that's necessarily something you'd want to include in the base install, but might be useful for others