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.
2 parents 2ca2216 + 8fccbbe commit 831824aCopy full SHA for 831824a
OPENJDK-2408-bin-custom-s2i-assemble/.s2i/bin/assemble
@@ -8,4 +8,8 @@ echo appsrc-provided s2i assemble script executed
8
sleep 1
9
echo delegating to builder image s2i assemble
10
11
-exec /usr/local/s2i/assemble "$@"
+# Adjusting the path ensures that this can find assemble for images which
12
+# put the s2i scripts at /usr/local/s2i (UBI8, UBI9) as well as those at
13
+# /usr/libexec/s2i (UBI10).
14
+PATH=/usr/libexec/s2i:/usr/local/s2i:$PATH
15
+exec assemble "$@"
0 commit comments