diff --git a/configuration/Dockerfile b/configuration/Dockerfile index 1c3dfed..f28010e 100644 --- a/configuration/Dockerfile +++ b/configuration/Dockerfile @@ -19,7 +19,6 @@ COPY spinup-testnet.sh /root/ COPY mina-local-network.sh /root/ COPY drop_tables.sql /root/ COPY create_schema.sql /root/ -COPY zkapp_tables.sql /root/ COPY mina.exe /root/ COPY archive.exe /root/ COPY libp2p_helper /root/ diff --git a/scripts/build-image.sh b/scripts/build-image.sh index 83d9c42..e2242ce 100755 --- a/scripts/build-image.sh +++ b/scripts/build-image.sh @@ -41,11 +41,6 @@ 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}/ -if [[ "${DOCKER_HUB_IMAGE_TAG}" == "develop-latest-devnet" || "${DOCKER_HUB_IMAGE_TAG}" == "develop-latest-lightnet" || "${DOCKER_HUB_IMAGE_TAG}" == "compatible-latest-devnet" || "${DOCKER_HUB_IMAGE_TAG}" == "compatible-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}/