From 676373b9e01baaa7083456014fa420a47acaa81a Mon Sep 17 00:00:00 2001 From: Martin-Molinero Date: Thu, 20 Oct 2022 15:49:45 -0300 Subject: [PATCH] Remove unrequired LD_LIBRARY_PATH - Remove unrequired LD_LIBRARY_PATH added for a mono issue at https://github.com/QuantConnect/Lean/pull/5380 --- DockerfileJupyter | 2 -- 1 file changed, 2 deletions(-) diff --git a/DockerfileJupyter b/DockerfileJupyter index 6389b4b9c154..d176972e484d 100644 --- a/DockerfileJupyter +++ b/DockerfileJupyter @@ -24,8 +24,6 @@ RUN if [ "$(uname -m)" = "aarch64" ]; then \ # Install clr-loader for PythonNet RUN pip install --no-cache-dir clr-loader==0.1.6 -ENV LD_LIBRARY_PATH=/lib/ - # Install .NET Interactive to support C# in Jupyter notebooks ENV PATH="${PATH}:/root/.dotnet/tools" RUN dotnet tool install -g --no-cache --version 1.0.340501 --add-source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" Microsoft.dotnet-interactive && \