diff --git a/base/Dockerfile b/base/Dockerfile index 25bf6114..3276ff3a 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -45,6 +45,7 @@ RUN chmod -R +x /opt/ && \ /opt/install-argo-workflows-cli.sh && \ /opt/install-duckdb-cli.sh && \ /opt/install-duckdb-extensions.sh && \ + /opt/install-quarto.sh && \ # Fix permissions chown -R ${USERNAME}:${GROUPNAME} ${HOME} && \ chmod +x /opt/onyxia-init.sh && \ diff --git a/python-datascience/Dockerfile b/python-datascience/Dockerfile index 9d1c258c..55a494a9 100644 --- a/python-datascience/Dockerfile +++ b/python-datascience/Dockerfile @@ -9,8 +9,6 @@ COPY conda-env.yml . RUN ls -larth /opt/ RUN conda env update -n base -f conda-env.yml && \ - # Install Quarto latest version - /opt/install-quarto.sh && \ # Fix permissions chown -R ${USERNAME}:${GROUPNAME} ${HOME} ${CONDA_DIR} && \ # Clean diff --git a/r-datascience/Dockerfile b/r-datascience/Dockerfile index bd5dc387..66b760e7 100644 --- a/r-datascience/Dockerfile +++ b/r-datascience/Dockerfile @@ -12,7 +12,6 @@ USER root # Install additional libraries and R packages for datascience RUN /opt/install-java.sh && \ - /opt/install-quarto.sh && \ # Install Shiny Server /rocker_scripts/install_shiny_server.sh && \ # Install packages bundles from rocker diff --git a/r-python-julia/Dockerfile b/r-python-julia/Dockerfile index b951c11a..63a56db1 100644 --- a/r-python-julia/Dockerfile +++ b/r-python-julia/Dockerfile @@ -20,8 +20,6 @@ RUN /opt/install-julia.sh && \ # Install and configure reticulate to use Python in R install2.r --error reticulate && \ R -q -e 'reticulate::py_discover_config(required_module = NULL, use_environment = NULL)' && \ - # Install quarto - /opt/install-quarto.sh && \ # Clean rm requirements.txt && \ rm -rf /var/lib/apt/lists/*