Skip to content

Commit

Permalink
chore: use dependabot for image updates (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
rokroskar authored Mar 1, 2023
1 parent d4a9cc9 commit 77af22c
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 30 deletions.
22 changes: 22 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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"
8 changes: 2 additions & 6 deletions R-minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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
Expand Down
8 changes: 2 additions & 6 deletions bioc-minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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
Expand Down
8 changes: 2 additions & 6 deletions julia-minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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
Expand Down
8 changes: 2 additions & 6 deletions minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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
Expand Down
8 changes: 2 additions & 6 deletions python-minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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
Expand Down

0 comments on commit 77af22c

Please sign in to comment.