Skip to content

Commit 122875b

Browse files
committed
Exclude bullseye for now
I think the provided git version is too low, but even installing it from backports doesn't work. So, just exclude it for now
1 parent 3c0b7c2 commit 122875b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

images.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
# { "variant": "alpine3.20", "platform": "linux/arm64/v8" },
1616
# { "variant": "alpine3.20", "platform": "linux/386" }
1717
# ]
18-
images = variants.map do |variant|
18+
images = variants.filter_map do |variant|
19+
# Until irb releases a new version
20+
next if variant.include?("bullseye")
21+
1922
# debian:bullseye-slim
2023
base_image = File.read("docker-ruby/master/#{variant}/Dockerfile")[/FROM (.*)/, 1]
2124
manifest_inspect = JSON.parse(`docker manifest inspect #{base_image}`)

0 commit comments

Comments
 (0)