From 3aae67d6a049b30f5721230a726ec0b50f81ec99 Mon Sep 17 00:00:00 2001 From: William Tan <1284324+Ninja3047@users.noreply.github.com> Date: Mon, 15 Dec 2025 19:34:31 -0500 Subject: [PATCH] Fix Dockerfile warning ``` 1 warning found (use docker --debug to expand): - UndefinedVar: Usage of undefined variable '$LD_LIBRARY_PATH' (line 105) ``` --- Dockerfile.llvm | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile.llvm b/Dockerfile.llvm index 9e872eac..96ff9859 100644 --- a/Dockerfile.llvm +++ b/Dockerfile.llvm @@ -102,7 +102,6 @@ COPY --from=builder /opt/remill /opt/remill # Set environment ENV LLVM_VERSION=${LLVM_VERSION} ENV PATH="/opt/remill/bin:${PATH}" -ENV LD_LIBRARY_PATH="/usr/lib/llvm-${LLVM_VERSION}/lib:${LD_LIBRARY_PATH}" # Create entrypoint script RUN echo '#!/bin/sh\nexec remill-lift-'${LLVM_VERSION}' "$@"' > /usr/local/bin/entrypoint.sh && \