From 09a7249cfcc9e0d29f9a210eb4be14f3f28002a7 Mon Sep 17 00:00:00 2001 From: Matyas Markovics Date: Fri, 5 Feb 2021 08:24:39 +0100 Subject: [PATCH] Fix order of linked libs, see https://stackoverflow.com/a/15327935 --- Dockerfile.full | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.full b/Dockerfile.full index e9f59a3..50b2dbb 100644 --- a/Dockerfile.full +++ b/Dockerfile.full @@ -26,7 +26,7 @@ COPY . 3proxy RUN cd 3proxy &&\ echo "">> Makefile.Linux &&\ echo PLUGINS = StringsPlugin TrafficPlugin PCREPlugin TransparentPlugin SSLPlugin>>Makefile.Linux &&\ - echo LIBS = -l:libcrypto.a -l:libssl.a -ldl >>Makefile.Linux &&\ + echo LIBS = -l:libssl.a -l:libcrypto.a -ldl >>Makefile.Linux &&\ make -f Makefile.Linux &&\ strip bin/3proxy &&\ strip bin/StringsPlugin.ld.so &&\