Skip to content

Commit 9dab655

Browse files
authored
chore: bump webapp Dockerfile version (#4441)
Also add the Dockerfile to the dependabot config so that it will update automatically in the future
1 parent 2db7c06 commit 9dab655

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,17 @@ updates:
6868
update-types:
6969
- "version-update:semver-major"
7070
- "version-update:semver-minor"
71+
- package-ecosystem: "docker"
72+
directory: "/webapp/web"
73+
schedule:
74+
interval: "weekly"
75+
# Searchcache Docker image should ignore major and minor updates to Docker Go Image
76+
# Searchcache follows the bring-your-own-container paradigm because it uses
77+
# App Engine Flex. While we could use the latest version, we want this Go
78+
# version to follow the same version used in the webapp above (which uses
79+
# App Engine Standard).
80+
ignore:
81+
- dependency-name: "*"
82+
update-types:
83+
- "version-update:semver-major"
84+
- "version-update:semver-minor"

webapp/web/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Production deployment spec for the webapp.
22

3-
FROM golang:1.24.3-bookworm as builder
3+
FROM golang:1.24.4-bookworm as builder
44

55
RUN apt-get update
66
RUN apt-get install -qy --no-install-suggests git sudo

0 commit comments

Comments
 (0)