Skip to content

Commit e8cb05c

Browse files
authored
Docker: Download Chromium from Alpine edge (#648)
1 parent 8ee2038 commit e8cb05c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 3.12.7 (2025-06-19)
22

3-
- Chore: Update base Docker image to latest, [macabu](https://github.com/macabu)
3+
- Chore: Update base Docker image to latest (CVE-2025-5959), [#647](https://github.com/grafana/grafana-image-renderer/pull/647), [#648](https://github.com/grafana/grafana-image-renderer/pull/648), [macabu](https://github.com/macabu), [Proximyst](https://github.com/Proximyst)
44
- Tracing: Add debug logs when verbose logging is enabled [#644](https://github.com/grafana/grafana-image-renderer/pull/644), [AgnesToulet](https://github.com/AgnesToulet)
55

66
## 3.12.6 (2025-05-23)

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ ENV XDG_CACHE_HOME=/tmp/.chromium
1010

1111
WORKDIR /usr/src/app
1212

13+
# We use edge for Chromium to get the latest release.
14+
# Can be back to stable when 3.22 gets .103.
1315
RUN apk --no-cache upgrade && \
14-
apk add --no-cache udev ttf-opensans unifont chromium chromium-swiftshader ca-certificates dumb-init && \
16+
apk add --no-cache udev ttf-opensans unifont ca-certificates dumb-init && \
17+
apk add --no-cache chromium chromium-swiftshader --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community && \
1518
# Remove NPM-related files and directories
1619
rm -rf /usr/local/lib/node_modules/npm && \
1720
rm -rf /usr/local/bin/npm && \

0 commit comments

Comments
 (0)