Skip to content

Commit

Permalink
Fix for 'develop' builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
shimkiv committed Jul 3, 2024
1 parent 5a7653a commit 93a771b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/build-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ done
cp -r ${MINA_REPO_DIR}/scripts/mina-local-network/mina-local-network.sh ${TMP_FOLDER}/
cp -r ${MINA_REPO_DIR}/src/app/archive/drop_tables.sql ${TMP_FOLDER}/
cp -r ${MINA_REPO_DIR}/src/app/archive/create_schema.sql ${TMP_FOLDER}/
cp -r ${MINA_REPO_DIR}/src/app/archive/zkapp_tables.sql ${TMP_FOLDER}/
if [[ "${DOCKER_HUB_IMAGE_TAG}" == "develop-latest-devnet" || "${DOCKER_HUB_IMAGE_TAG}" == "develop-latest-lightnet" ]]; then
touch ${TMP_FOLDER}/zkapp_tables.sql
else
cp -r ${MINA_REPO_DIR}/src/app/archive/zkapp_tables.sql ${TMP_FOLDER}/
fi
cp -r ${MINA_REPO_DIR}/_build/default/src/app/cli/src/mina.exe ${TMP_FOLDER}/
cp -r ${MINA_REPO_DIR}/src/app/libp2p_helper/result/bin/libp2p_helper ${TMP_FOLDER}/
cp -r ${MINA_REPO_DIR}/_build/default/src/app/archive/archive.exe ${TMP_FOLDER}/
Expand Down

0 comments on commit 93a771b

Please sign in to comment.