diff --git a/Dockerfile b/Dockerfile index 5503e2e..60e0c6b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,8 +11,12 @@ # - https://pkgs.org/ - resource for finding needed packages # - Ex: hexpm/elixir:1.18.3-erlang-27.3-debian-bullseye-20250317-slim # -ARG BUILDER_IMAGE="hexpm/elixir:1.18.3-erlang-27.3-debian-bullseye-20250317-slim" -ARG RUNNER_IMAGE="debian:bullseye-20250317-slim" +ARG ELIXIR_VERSION=1.18.3 +ARG OTP_VERSION=27.3 +ARG DEBIAN_VERSION=bullseye-20250317-slim + +ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}" +ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}" FROM ${BUILDER_IMAGE} as builder diff --git a/renovate.json b/renovate.json index 6f76f2a..fadc4d2 100644 --- a/renovate.json +++ b/renovate.json @@ -13,11 +13,11 @@ { "groupName": "postgres", "description": "Group updates to postgres across drone ci, docker-compose.yml and other files", - "matchPackageNames": ["**postgres**"] + "matchDepNames": ["**postgres**"] }, { - "matchFileNames": [".tool-versions", "Dockerfile"], - "matchCurrentValue": "**elixir-otp-**", + "matchFileNames": [".tool-versions"], + "matchPackageNames": ["elixir"], "enabled": false } ]