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 6334cde commit 332d9c1Copy full SHA for 332d9c1
scripts/print_docker_image.sh
@@ -0,0 +1,7 @@
1
+#!/bin/bash
2
+
3
+BASEDIR=$(dirname "$0")
4
+TOOLCHAIN_VERSION=$($BASEDIR/print_toolchain_checksum.sh)
5
+DOCKER_VERSION=$(cat $BASEDIR/ncs-docker-version.txt)
6
7
+echo "docker-dtr.nordicsemi.no/sw-production/ncs-build:${TOOLCHAIN_VERSION}_${DOCKER_VERSION}"
scripts/print_toolchain_checksum.sh
@@ -0,0 +1,8 @@
+REQUIREMENTS=$BASEDIR/requirements-fixed.txt
+TOOLS_VERSIONS=$BASEDIR/tools-versions-linux.txt
+TOOLCHAIN_VERSION=$(cat $REQUIREMENTS $TOOLS_VERSIONS | sha256sum | head -c 10)
8
+echo "${TOOLCHAIN_VERSION}"
0 commit comments