Skip to content
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
2 changes: 1 addition & 1 deletion lib/config/options/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ const options: Readonly<RenovateOptions>[] = [
description:
'Change this value to override the default Renovate sidecar image.',
type: 'string',
default: 'ghcr.io/renovatebot/base-image:13.33.32',
default: 'ghcr.io/renovatebot/base-image:13.33.33',
globalOnly: true,
deprecationMsg:
'The usage of `binarySource=docker` is deprecated, and will be removed in the future',
Expand Down
6 changes: 3 additions & 3 deletions tools/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ ARG BASE_IMAGE_TYPE=slim
# --------------------------------------
# slim image
# --------------------------------------
FROM ghcr.io/renovatebot/base-image:13.33.32@sha256:f28333874dbd15573394c67306a6ecbb828e9e0d29f82a0e5348f599ce9a1f1d AS slim-base
FROM ghcr.io/renovatebot/base-image:13.33.33@sha256:caf89364f63c28e2d4755c5e715c1612eba1f859ab40c38052393defe0ff06be AS slim-base

# --------------------------------------
# full image
# --------------------------------------
FROM ghcr.io/renovatebot/base-image:13.33.32-full@sha256:9667464bf352511891712f3e53f1d4206accaacf24d5bc0e164a5db5638fe772 AS full-base
FROM ghcr.io/renovatebot/base-image:13.33.33-full@sha256:6adfc85eaedadedcd6fdffef38f760c9a1efcf1064cb8cba6442885ba9d54460 AS full-base

ENV RENOVATE_BINARY_SOURCE=global

# --------------------------------------
# build image
# --------------------------------------
FROM --platform=$BUILDPLATFORM ghcr.io/renovatebot/base-image:13.33.32@sha256:f28333874dbd15573394c67306a6ecbb828e9e0d29f82a0e5348f599ce9a1f1d AS build
FROM --platform=$BUILDPLATFORM ghcr.io/renovatebot/base-image:13.33.33@sha256:caf89364f63c28e2d4755c5e715c1612eba1f859ab40c38052393defe0ff06be AS build

# We want a specific node version here
# renovate: datasource=github-releases packageName=containerbase/node-prebuild versioning=node
Expand Down
Loading