From ae21e354d529448d2ccaf690005f21a5de73c531 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Tue, 16 Jan 2024 10:19:15 +0100 Subject: [PATCH] Don't ignore build errors --- qns/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qns/Dockerfile b/qns/Dockerfile index d7113752c1..c0daf23ddd 100644 --- a/qns/Dockerfile +++ b/qns/Dockerfile @@ -39,7 +39,7 @@ ADD . /neqo RUN set -eux; \ cd /neqo; \ RUSTFLAGS="-g -C link-arg=-fuse-ld=lld" cargo build --release \ - --bin neqo-client --bin neqo-server; + --bin neqo-client --bin neqo-server # Copy only binaries to the final image to keep it small.