From b9aa9090bbc2dc2fa9fe2024fdfcc02c48440c8a Mon Sep 17 00:00:00 2001 From: harmj0y Date: Tue, 17 Jun 2025 18:18:03 +0300 Subject: [PATCH] noseyparker-scanner Dockerfile test fixes -noseyparker-scanner Dockerfile test fixes --- projects/noseyparker_scanner/Dockerfile.new | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/projects/noseyparker_scanner/Dockerfile.new b/projects/noseyparker_scanner/Dockerfile.new index 815b6fb..38f1560 100644 --- a/projects/noseyparker_scanner/Dockerfile.new +++ b/projects/noseyparker_scanner/Dockerfile.new @@ -12,7 +12,9 @@ RUN apt-get update && \ libssl-dev \ libboost-all-dev \ ragel \ - ccache && \ + ccache \ + git \ + ca-certificates && \ rm -rf /var/lib/apt/lists/* # Configure ccache for faster builds @@ -40,7 +42,8 @@ ENV CARGO_INCREMENTAL=0 \ CARGO_PROFILE_RELEASE_OPT_LEVEL=2 \ CARGO_NET_GIT_FETCH_WITH_CLI=true \ CARGO_HTTP_MULTIPLEXING=false \ - CARGO_BUILD_JOBS=4 + CARGO_BUILD_JOBS=4 \ + GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" # Build dependencies for prod with optimized flags and parallel compilation RUN --mount=type=cache,target=/ccache \