Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add dependabot Docker updates #21

Merged
merged 6 commits into from
Apr 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "docker"
directory: "Renv"
schedule:
interval: "weekly"
- package-ecosystem: "docker"
directory: "aiida"
schedule:
interval: "weekly"
- package-ecosystem: "docker"
directory: "desktop"
schedule:
interval: "weekly"
- package-ecosystem: "docker"
directory: "matlab"
schedule:
interval: "weekly"
- package-ecosystem: "docker"
directory: "python-minimal-streamlit"
schedule:
interval: "weekly"
- package-ecosystem: "docker"
directory: "qgis"
schedule:
interval: "weekly"
3 changes: 1 addition & 2 deletions Renv/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# 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.13.1
FROM ${RENKU_BASE_IMAGE}
FROM renku/renkulab-r:4.2.0-0.13.1

# Uncomment and adapt if code is to be included in the image
# COPY src /code/src
Expand Down
3 changes: 1 addition & 2 deletions aiida/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# 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.11.1
FROM ${RENKU_BASE_IMAGE}
FROM renku/renkulab-py:3.9-0.11.1

# Uncomment and adapt if code is to be included in the image
# COPY src /code/src
Expand Down
3 changes: 1 addition & 2 deletions desktop/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# For finding latest versions of the base image see
# https://github.com/SwissDataScienceCenter/renkulab-docker
ARG RENKU_BASE_IMAGE=renku/renkulab-vnc:0.11.1
FROM ${RENKU_BASE_IMAGE}
FROM renku/renkulab-vnc:0.11.1

# Uncomment and adapt if code is to be included in the image
# COPY src /code/src
Expand Down
3 changes: 1 addition & 2 deletions matlab/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# For finding latest versions of the base image see
# https://github.com/SwissDataScienceCenter/renkulab-docker
ARG RENKU_BASE_IMAGE=renku/renkulab-matlab:0.11.1
FROM ${RENKU_BASE_IMAGE}
FROM renku/renkulab-matlab:0.11.1

# Uncomment and adapt if code is to be included in the image
# COPY src /code/src
Expand Down
3 changes: 1 addition & 2 deletions python-minimal-streamlit/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# 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
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
3 changes: 1 addition & 2 deletions qgis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# For finding latest versions of the base image see
# https://github.com/SwissDataScienceCenter/renkulab-docker
ARG RENKU_BASE_IMAGE=renku/renkulab-qgis:0.11.1
FROM ${RENKU_BASE_IMAGE}
FROM renku/renkulab-qgis:0.11.1

# Uncomment and adapt if code is to be included in the image
# COPY src /code/src
Expand Down