Skip to content

Commit ee285d4

Browse files
authored
Updated worker base image to Debian 12. (#8853)
1 parent 0612345 commit ee285d4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ Important changes to data models, configuration, and migrations between each
22
AppEngine version, listed here to ease deployment and troubleshooting.
33

44
## Next Release (replace with git tag when deployed)
5+
* Bump runtimeVersion to `2025.07.14`.
6+
* Note: Updated worker base image to use Debian 12.
57

68
## `20250708t090800-all`
79
* Bump runtimeVersion to `2025.07.04`.

Dockerfile.worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM gcr.io/google-containers/debian-base-amd64:v2.0.0
1+
FROM docker.io/debian:12
22

33
RUN apt-get update && \
44
apt-get upgrade -y && \

app/lib/shared/versions.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$');
2424
/// when the version switch happens.
2525
const _acceptedRuntimeVersions = <String>[
2626
// The current [runtimeVersion].
27-
'2025.07.04',
27+
'2025.07.14',
2828
// Fallback runtime versions.
29+
'2025.07.04',
2930
'2025.07.01',
30-
'2025.06.20',
3131
];
3232

3333
/// Sets the current runtime versions.

0 commit comments

Comments
 (0)