TinyTex and Chromium is not being installed in rocker docker container #12612
-
Description
TinyTex and Chromium are listed as not installed. Create a dockerfile:
TinyTex and Chromium are still listed as not installed. This installation seems to work when trying outside the container on a local installation of quarto. OS: Ubuntu Focal |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Ask the maintainers of the image which are stated in the image name, i.e., https://rocker.org. Note that the Rocker project documents the scripts used in the images and their location to install additional features. |
Beta Was this translation helpful? Give feedback.
-
@royfrancis I do believe this is because you are running the command as
So I think you need USER instruction before |
Beta Was this translation helpful? Give feedback.
@royfrancis I do believe this is because you are running the command as
-u 1000:1000
but you are not installing with the same user.quarto install
will install for the userTry
So I think you need USER instruction before
RUN
or you need to install differently and add to PATH while tweaking permissions.