We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d1eed commit 94aac99Copy full SHA for 94aac99
1 file changed
build/scripts/image.sh
@@ -17,9 +17,9 @@ fi
17
18
image="linuxppc/build:$distro-$version"
19
20
-from="docker.io/$distro:$version"
21
-
22
-if [[ "$distro" == "docs" ]]; then
+if [[ "$distro" == "fedora" ]]; then
+ from="registry.fedoraproject.org/$distro:$version"
+elif [[ "$distro" == "docs" ]]; then
23
from="docker.io/ubuntu:$version"
24
elif [[ "$distro" == "allcross" ]]; then
25
from="docker.io/debian:$version"
@@ -32,6 +32,8 @@ elif [[ "$distro" == "korg" ]]; then
32
else
33
from="docker.io/ubuntu:20.04"
34
fi
35
+else
36
+ from="docker.io/$distro:$version"
37
38
39
if [[ "$task" == "image" ]]; then
0 commit comments