From 2ff06009eb1f8d61fec72843118ddfdc1564c370 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Nov 2021 10:09:50 +0000 Subject: [PATCH] Automatic update of container definition files --- dockerfiles/cuda11_4.1.2.Dockerfile | 1 + dockerfiles/r-ver_4.1.2.Dockerfile | 2 ++ stacks/4.1.2.json | 2 ++ 3 files changed, 5 insertions(+) diff --git a/dockerfiles/cuda11_4.1.2.Dockerfile b/dockerfiles/cuda11_4.1.2.Dockerfile index 975a2aca..66485a92 100644 --- a/dockerfiles/cuda11_4.1.2.Dockerfile +++ b/dockerfiles/cuda11_4.1.2.Dockerfile @@ -25,5 +25,6 @@ RUN /rocker_scripts/install_R.sh COPY scripts /rocker_scripts +RUN /rocker_scripts/patch_install_command.sh RUN /rocker_scripts/config_R_cuda.sh RUN /rocker_scripts/install_python.sh diff --git a/dockerfiles/r-ver_4.1.2.Dockerfile b/dockerfiles/r-ver_4.1.2.Dockerfile index e6b7c71c..b0267953 100644 --- a/dockerfiles/r-ver_4.1.2.Dockerfile +++ b/dockerfiles/r-ver_4.1.2.Dockerfile @@ -19,4 +19,6 @@ RUN /rocker_scripts/install_R.sh COPY scripts /rocker_scripts +RUN /rocker_scripts/patch_install_command.sh + CMD ["R"] diff --git a/stacks/4.1.2.json b/stacks/4.1.2.json index 329a74a6..7429788a 100644 --- a/stacks/4.1.2.json +++ b/stacks/4.1.2.json @@ -36,6 +36,7 @@ "COPY_a_script": "scripts/install_R.sh /rocker_scripts/install_R.sh", "RUN_a_script": "/rocker_scripts/install_R.sh", "COPY": "scripts /rocker_scripts", + "RUN": "/rocker_scripts/patch_install_command.sh", "CMD": "[\"R\"]", "tags": [ "docker.io/rocker/r-ver:4.1.2", @@ -327,6 +328,7 @@ "RUN_a_script": "/rocker_scripts/install_R.sh", "COPY": "scripts /rocker_scripts", "RUN": [ + "/rocker_scripts/patch_install_command.sh", "/rocker_scripts/config_R_cuda.sh", "/rocker_scripts/install_python.sh" ],