Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ if [[ -n ${source_ref} ]]; then
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y lsb-release sudo git

rm -rf /chia-blockchain
git clone --branch "${source_ref}" --recurse-submodules=mozilla-ca https://github.com/Chia-Network/chia-blockchain.git /chia-blockchain
git clone --recurse-submodules=mozilla-ca https://github.com/Chia-Network/chia-blockchain.git /chia-blockchain
cd /chia-blockchain || exit 1
git checkout ${source_ref}
/bin/sh ./install.sh -s
fi

Expand Down