We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c0b7c2 commit 122875bCopy full SHA for 122875b
images.rb
@@ -15,7 +15,10 @@
15
# { "variant": "alpine3.20", "platform": "linux/arm64/v8" },
16
# { "variant": "alpine3.20", "platform": "linux/386" }
17
# ]
18
-images = variants.map do |variant|
+images = variants.filter_map do |variant|
19
+ # Until irb releases a new version
20
+ next if variant.include?("bullseye")
21
+
22
# debian:bullseye-slim
23
base_image = File.read("docker-ruby/master/#{variant}/Dockerfile")[/FROM (.*)/, 1]
24
manifest_inspect = JSON.parse(`docker manifest inspect #{base_image}`)
0 commit comments