From 8442695b736dd10a3cf8e8be3b55986a29082e5a Mon Sep 17 00:00:00 2001 From: Viacheslav Vasilyev Date: Sat, 6 Mar 2021 14:19:08 +0200 Subject: [PATCH] suppress ntlm error messages in Windows build when building for windows there are many error message like below ``` 003a:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. ``` --- build/windows.x86_64/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/windows.x86_64/Dockerfile b/build/windows.x86_64/Dockerfile index 3eb20fa..c5fa07b 100644 --- a/build/windows.x86_64/Dockerfile +++ b/build/windows.x86_64/Dockerfile @@ -5,7 +5,7 @@ ENV TARGETNAME windows.x86_64 # We don't need wine32, even though it complains USER root ENV DEBIAN_FRONTEND noninteractive -RUN apt-get update && apt-get install -y curl busybox wine +RUN apt-get update && apt-get install -y curl busybox wine winbind # Fetch Windows version, will be available under z:\haskell WORKDIR /haskell