From a865cbcf47cba8e61a9e273975a75ac8b0fe4657 Mon Sep 17 00:00:00 2001 From: Sebastian Waldbauer Date: Tue, 1 Feb 2022 11:13:13 +0100 Subject: [PATCH] FIX: Keep html directory after build Signed-off-by: Sebastian Waldbauer --- build.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/build.sh b/build.sh index 5463161..b9eb3d3 100755 --- a/build.sh +++ b/build.sh @@ -12,9 +12,7 @@ echo Api : $git_ref_api echo Build_date: $build_date # build static html -cd ./intelmq-manager \ - && python3 setup.py build \ - && cd .. +cd ./intelmq-manager && python3 setup.py build && cd .. docker build --build-arg BUILD_DATE=$build_date \ --build-arg VCS_REF="IntelMQ-Manager=$git_ref_manager" \ @@ -27,7 +25,3 @@ docker build --build-arg BUILD_DATE=$build_date \ --build-arg BUILD_VERSION=$build_version \ -f ./.docker/intelmq-full/Dockerfile \ -t intelmq-full:latest . - -cd ./intelmq-manager \ - && rm -r html \ - && cd ..