From 77af22c610cbccde6ba57cccdc4c0bbd2e6d14bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rok=20Ro=C5=A1kar?= Date: Wed, 1 Mar 2023 15:31:20 +0100 Subject: [PATCH] chore: use dependabot for image updates (#163) --- .github/dependabot.yml | 22 ++++++++++++++++++++++ R-minimal/Dockerfile | 8 ++------ bioc-minimal/Dockerfile | 8 ++------ julia-minimal/Dockerfile | 8 ++------ minimal/Dockerfile | 8 ++------ python-minimal/Dockerfile | 8 ++------ 6 files changed, 32 insertions(+), 30 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..950f968 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +version: 2 +updates: + - package-ecosystem: "docker" + directory: "docker/python" + schedule: + interval: "weekly" + - package-ecosystem: "docker" + directory: "docker/R" + schedule: + interval: "weekly" + - package-ecosystem: "docker" + directory: "docker/julia" + schedule: + interval: "weekly" + - package-ecosystem: "docker" + directory: "docker/bioc" + schedule: + interval: "weekly" + - package-ecosystem: "docker" + directory: "docker/minimal" + schedule: + interval: "weekly" diff --git a/R-minimal/Dockerfile b/R-minimal/Dockerfile index 1850d83..2b07445 100644 --- a/R-minimal/Dockerfile +++ b/R-minimal/Dockerfile @@ -1,11 +1,7 @@ -# For finding latest versions of the base image see -# https://github.com/SwissDataScienceCenter/renkulab-docker -ARG RENKU_BASE_IMAGE=renku/renkulab-r:4.2.0-0.14.0 - ######################################################## # Renku install section - do not edit # -FROM ${RENKU_BASE_IMAGE} as builder +FROM renku/renkulab-r:4.2.0-0.14.0 as builder # RENKU_VERSION determines the version of the renku CLI # that will be used in this image. To find the latest version, @@ -29,7 +25,7 @@ RUN if [ -n "$RENKU_VERSION" ] ; then \ # End Renku install section # ######################################################## -FROM ${RENKU_BASE_IMAGE} +FROM renku/renkulab-r:4.2.0-0.14.0 # Uncomment and adapt if code is to be included in the image # COPY src /code/src diff --git a/bioc-minimal/Dockerfile b/bioc-minimal/Dockerfile index bf5d0a3..386fd20 100644 --- a/bioc-minimal/Dockerfile +++ b/bioc-minimal/Dockerfile @@ -1,11 +1,7 @@ -# see https://github.com/SwissDataScienceCenter/renkulab-docker -# to swap this image for the latest version available -ARG RENKU_BASE_IMAGE=renku/renkulab-bioc:RELEASE_3_15-0.14.0 - ######################################################## # Renku install section - do not edit # -FROM ${RENKU_BASE_IMAGE} as builder +FROM renku/renkulab-bioc:RELEASE_3_15-0.14.0 as builder # RENKU_VERSION determines the version of the renku CLI # that will be used in this image. To find the latest version, @@ -29,7 +25,7 @@ RUN if [ -n "$RENKU_VERSION" ] ; then \ # End Renku install section # ######################################################## -FROM ${RENKU_BASE_IMAGE} +FROM renku/renkulab-bioc:RELEASE_3_15-0.14.0 # Uncomment and adapt if code is to be included in the image # COPY src /code/src diff --git a/julia-minimal/Dockerfile b/julia-minimal/Dockerfile index acfa3ed..acd4ca3 100644 --- a/julia-minimal/Dockerfile +++ b/julia-minimal/Dockerfile @@ -1,11 +1,7 @@ -# For finding latest versions of the base image see -# https://github.com/SwissDataScienceCenter/renkulab-docker -ARG RENKU_BASE_IMAGE=renku/renkulab-julia:1.7.1-0.14.0 - ######################################################## # Renku install section - do not edit # -FROM ${RENKU_BASE_IMAGE} as builder +FROM renku/renkulab-julia:1.7.1-0.14.0 as builder # RENKU_VERSION determines the version of the renku CLI # that will be used in this image. To find the latest version, @@ -29,7 +25,7 @@ RUN if [ -n "$RENKU_VERSION" ] ; then \ # End Renku install section # ######################################################## -FROM ${RENKU_BASE_IMAGE} +FROM renku/renkulab-julia:1.7.1-0.14.0 # Uncomment and adapt if code is to be included in the image # COPY src /code/src diff --git a/minimal/Dockerfile b/minimal/Dockerfile index 3f7e2b0..cfb7961 100644 --- a/minimal/Dockerfile +++ b/minimal/Dockerfile @@ -1,11 +1,7 @@ -# For finding latest versions of the base image see -# https://github.com/SwissDataScienceCenter/renkulab-docker -ARG RENKU_BASE_IMAGE=renku/renkulab-py:3.9-0.14.0 - ######################################################## # Renku install section - do not edit # -FROM ${RENKU_BASE_IMAGE} as builder +FROM renku/renkulab-py:3.9-0.14.0 as builder # RENKU_VERSION determines the version of the renku CLI # that will be used in this image. To find the latest version, @@ -29,7 +25,7 @@ RUN if [ -n "$RENKU_VERSION" ] ; then \ # End Renku install section # ######################################################## -FROM ${RENKU_BASE_IMAGE} +FROM renku/renkulab-py:3.9-0.14.0 # Uncomment and adapt if code is to be included in the image # COPY src /code/src diff --git a/python-minimal/Dockerfile b/python-minimal/Dockerfile index 3488f80..992fa25 100644 --- a/python-minimal/Dockerfile +++ b/python-minimal/Dockerfile @@ -1,11 +1,7 @@ -# For finding latest versions of the base image see -# https://github.com/SwissDataScienceCenter/renkulab-docker -ARG RENKU_BASE_IMAGE=renku/renkulab-py:3.9-0.14.0 - ######################################################## # Renku install section - do not edit # -FROM ${RENKU_BASE_IMAGE} as builder +FROM renku/renkulab-py:3.9-0.14.0 as builder # RENKU_VERSION determines the version of the renku CLI # that will be used in this image. To find the latest version, @@ -29,7 +25,7 @@ RUN if [ -n "$RENKU_VERSION" ] ; then \ # End Renku install section # ######################################################## -FROM ${RENKU_BASE_IMAGE} +FROM renku/renkulab-py:3.9-0.14.0 # Uncomment and adapt if code is to be included in the image # COPY src /code/src