Adds a renovate.json with two custom regex managers:
Base image tracking: FROM jcabillot/opencode:latest — the native dockerfile manager detected the Dockerfile but extracted 0 deps, missing the base image.
npm package tracking: @openchamber/web@1.12.3 — hardcoded via ARG OPENCHAMBER_WEB_VERSION=1.12.3 in the Dockerfile, invisible to native npm manager.
Why
Renovate's dashboard shows dockerfile (1) with zero dependencies detected despite the Dockerfile containing:
A FROM jcabillot/opencode:latest base image
An ARG OPENCHAMBER_WEB_VERSION=1.12.3 that pins @openchamber/web version
These regex managers ensure Renovate can properly track and update these dependencies.
Dashboard Before
dockerfile: ZERO deps detected (should have base image + npm package)
github-actions: detected 5 actions
MISSING: jcabillot/opencode base image, @openchamber/web npm version
## What
Adds a `renovate.json` with two custom regex managers:
1. **Base image tracking**: `FROM jcabillot/opencode:latest` — the native dockerfile manager detected the Dockerfile but extracted 0 deps, missing the base image.
2. **npm package tracking**: `@openchamber/web@1.12.3` — hardcoded via `ARG OPENCHAMBER_WEB_VERSION=1.12.3` in the Dockerfile, invisible to native npm manager.
## Why
Renovate's dashboard shows dockerfile (1) with **zero dependencies detected** despite the Dockerfile containing:
- A `FROM jcabillot/opencode:latest` base image
- An `ARG OPENCHAMBER_WEB_VERSION=1.12.3` that pins `@openchamber/web` version
These regex managers ensure Renovate can properly track and update these dependencies.
## Dashboard Before
- dockerfile: **ZERO deps detected** (should have base image + npm package)
- github-actions: detected 5 actions
- **MISSING**: `jcabillot/opencode` base image, `@openchamber/web` npm version
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
What
Adds a
renovate.jsonwith two custom regex managers:FROM jcabillot/opencode:latest— the native dockerfile manager detected the Dockerfile but extracted 0 deps, missing the base image.@openchamber/web@1.12.3— hardcoded viaARG OPENCHAMBER_WEB_VERSION=1.12.3in the Dockerfile, invisible to native npm manager.Why
Renovate's dashboard shows dockerfile (1) with zero dependencies detected despite the Dockerfile containing:
FROM jcabillot/opencode:latestbase imageARG OPENCHAMBER_WEB_VERSION=1.12.3that pins@openchamber/webversionThese regex managers ensure Renovate can properly track and update these dependencies.
Dashboard Before
jcabillot/opencodebase image,@openchamber/webnpm version