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 ad052e8 commit 6c0fb2eCopy full SHA for 6c0fb2e
scripts/docker/build.sh
@@ -6,6 +6,11 @@ cd "$(dirname "$0")"
6
# Used for verifying that we actually have a working csfle shared library
7
[ -x node_modules/mongodb-crypt-library-version ] || ((cd ../.. && npm ci) && cp -r ../../node_modules node_modules)
8
9
+# we don't have credentials for registry.suse.com and docker now requires them due to our config
10
+if [[ "$1" == suse* ]]
11
+ unset DOCKER_CONFIG
12
+fi
13
+
14
if [ x"$ARTIFACT_URL" = x"" ]; then
15
SHA=`git rev-parse origin/main`
16
VERSION=`git show ${SHA}:../../lerna.json | grep version | cut -d ":" -f 2 | cut -d '"' -f 2`
0 commit comments