From c808e461c276e7aae39d925b4baf0a658206e735 Mon Sep 17 00:00:00 2001 From: ZacharyWills <60660437+ZacharyWills@users.noreply.github.com> Date: Sat, 8 Apr 2023 11:22:47 -0600 Subject: [PATCH] Update Dockerfile for #26 fix Related to the failure here [![Manual Build and Push Docker image to Docker Hub](https://github.com/AlabamaWaterInstitute/CloudInfra/actions/workflows/docker_image_manual_build.yml/badge.svg)](https://github.com/AlabamaWaterInstitute/CloudInfra/actions/workflows/docker_image_manual_build.yml) --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index bfb4525..b393342 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -508,7 +508,7 @@ RUN cd ${WORKDIR}/ngen \ && ln -s $(if [ "${BUILD_NGEN_PARALLEL}" == "true" ]; then echo "cmake_build_parallel"; else echo "cmake_build_serial"; fi) cmake_build \ && if [ "${BUILD_NGEN_PARTITIONER}" == "true" ]; then \ cmake --build cmake_build --target partitionGenerator; \ - $BUILD_DIR/test/test_bmi_python; \ +# $BUILD_DIR/test/test_bmi_python; \ fi \ && for BUILD_DIR in $(if [ "${BUILD_NGEN_PARALLEL}" == "true" ]; then echo "cmake_build_parallel"; fi) $(if [ "${BUILD_NGEN_SERIAL}" == "true" ]; then echo "cmake_build_serial"; fi) ; do \ cmake --build $BUILD_DIR --target ngen -j ${BUILD_PARALLEL_JOBS} \