From ad2079532edf1e0162b5c61bc055fffe91d33de2 Mon Sep 17 00:00:00 2001 From: Gesche Gierse Date: Sat, 2 Feb 2019 12:29:33 +0100 Subject: [PATCH] fix docker file --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e1ba3f5f..00934c3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update; apt-get install -y \ liblua5.1-0-dev \ libopenal-dev \ libphysfs-dev \ - libssl-dev \ + libssl1.0-dev \ libvorbis-dev \ zlib1g-dev @@ -26,6 +26,6 @@ RUN apt-get install -y \ ADD . /app # Build application -RUN mkdir -p build && cd build && cmake .. && make -j$(grep -c ^process /proc/cpuinfo); +RUN mkdir -p build && cd build && cmake -DUSE_STATIC_LIBS=OFF .. && make -j$(grep -c ^process /proc/cpuinfo); CMD cd build; ./otclient