forked from Joystream/joystream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-node-docker.sh
More file actions
executable file
·34 lines (28 loc) · 948 Bytes
/
build-node-docker.sh
File metadata and controls
executable file
·34 lines (28 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash
set -e
# Looks for a cached joystream/node image matching code shasum.
# Search order: local repo then dockerhub. If no cached image is found we build it.
SCRIPT_PATH="$(dirname "${BASH_SOURCE[0]}")"
cd $SCRIPT_PATH
source scripts/features.sh
CODE_SHASUM=`scripts/runtime-code-shasum.sh`
IMAGE=joystream/node:${CODE_SHASUM}
# Look for image locally
if ! docker inspect ${IMAGE} > /dev/null;
then
# Not found, try to fetch from remote repo
echo "Trying to fetch cached ${IMAGE} image"
docker pull ${IMAGE} || :
# If we didn't find it, build it
if ! docker inspect ${IMAGE} > /dev/null;
then
echo "Building ${IMAGE}.."
docker build . --file joystream-node.Dockerfile \
--tag ${IMAGE} \
--build-arg CARGO_FEATURES=${FEATURES} \
--build-arg GIT_COMMIT_HASH=$(git rev-parse --short=11 HEAD) \
--build-arg CODE_SHASUM=${CODE_SHASUM}
fi
else
echo "Found ${IMAGE} in local repo"
fi