From bdb637ef7030a523a21659fa840d5e16ca26073b Mon Sep 17 00:00:00 2001 From: Matthew Lopez <73856503+MatthewL246@users.noreply.github.com> Date: Tue, 4 Jun 2024 20:39:10 -0400 Subject: [PATCH] chore: stop unnecessarily adding OpenSSL to LD_LIBRARY_PATH --- nginx/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nginx/Dockerfile b/nginx/Dockerfile index f669cfe..6a83661 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -43,9 +43,8 @@ RUN mkdir -p /var/log/nginx ARG nginx_dir COPY --from=build ${nginx_dir} ${nginx_dir} -# * Set PATH to include custom OpenSSL and nginx +# * Set PATH to include custom nginx ENV PATH="${nginx_dir}/sbin:${PATH}" -ENV LD_LIBRARY_PATH="${openssl_dir}/lib:${LD_LIBRARY_PATH}" # * Copy the default nginx configuration COPY nginx.default.conf /opt/nginx/conf/nginx.conf