Skip to content

Commit 870b068

Browse files
jhrcekdevelop7
authored andcommitted
fix: drop pinned base image digests from FROM lines
official-images doesn't accept digest-pinned FROM lines — bashbrew resolves the parent image from the tag and rebuilds haskell images whenever the base image is rebuilt, which pinning defeats. See docker-library/official-images#21812 - remove the digest field from the Nickel schema, template, and all variant data files, and regenerate the Dockerfiles - strip digests from the hand-maintained buster/slim-buster Dockerfiles - disable Renovate's pinDigests for Dockerfiles so they don't come back
1 parent bff7ab9 commit 870b068

51 files changed

Lines changed: 38 additions & 61 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9.0/buster/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM buildpack-deps:buster@sha256:c9285bcb198c0ae171bfc350a4af94ddfda547c4e4d2900a92c280232319341e
1+
FROM buildpack-deps:buster
22

33
ENV LANG=C.UTF-8
44

9.0/slim-buster/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:buster-slim@sha256:bb3dc79fddbca7e8903248ab916bb775c96ec61014b3d02b4f06043b604726dc
1+
FROM debian:buster-slim
22

33
ENV LANG=C.UTF-8
44

9.10/bookworm.ncl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ globals
66
codename = "bookworm",
77
abbr = "deb12",
88
image = "debian:bookworm",
9-
digest = "sha256:30482e873082e906a4908c10529180aefb6f77620aea7404b909829fadc5d168",
109
},
1110
ghc = {
1211
version = "9.10.3",

9.10/bookworm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bookworm@sha256:30482e873082e906a4908c10529180aefb6f77620aea7404b909829fadc5d168
1+
FROM debian:bookworm
22

33
ENV LANG=C.UTF-8
44

9.10/bullseye.ncl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ globals
66
codename = "bullseye",
77
abbr = "deb11",
88
image = "debian:bullseye",
9-
digest = "sha256:e7100042ddfd3c1fb9d4a5bf15acbdb1058d7bb3340142916d3413a5c001fc89",
109
},
1110
ghc = {
1211
version = "9.10.3",

9.10/bullseye/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bullseye@sha256:e7100042ddfd3c1fb9d4a5bf15acbdb1058d7bb3340142916d3413a5c001fc89
1+
FROM debian:bullseye
22

33
ENV LANG=C.UTF-8
44

9.10/buster/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:buster@sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225
1+
FROM debian:buster
22

33
ENV LANG=C.UTF-8
44

9.10/slim-bookworm.ncl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ globals
66
codename = "bookworm",
77
abbr = "deb12",
88
image = "debian:bookworm-slim",
9-
digest = "sha256:60eac759739651111db372c07be67863818726f754804b8707c90979bda511df",
109
},
1110
ghc = {
1211
version = "9.10.3",

9.10/slim-bookworm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bookworm-slim@sha256:60eac759739651111db372c07be67863818726f754804b8707c90979bda511df
1+
FROM debian:bookworm-slim
22

33
ENV LANG=C.UTF-8
44

9.10/slim-bullseye.ncl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ globals
66
codename = "bullseye",
77
abbr = "deb11",
88
image = "debian:bullseye-slim",
9-
digest = "sha256:f18adf4e1d04b1d8ba48025b8e35003f4c748ddd3dd8e875fe4e7d9a9c0dec84",
109
},
1110
ghc = {
1211
version = "9.10.3",

0 commit comments

Comments
 (0)