fix docker file

master
Gesche 5 years ago
parent 7fc3229610
commit ad2079532e

@ -11,7 +11,7 @@ RUN apt-get update; apt-get install -y \
liblua5.1-0-dev \ liblua5.1-0-dev \
libopenal-dev \ libopenal-dev \
libphysfs-dev \ libphysfs-dev \
libssl-dev \ libssl1.0-dev \
libvorbis-dev \ libvorbis-dev \
zlib1g-dev zlib1g-dev
@ -26,6 +26,6 @@ RUN apt-get install -y \
ADD . /app ADD . /app
# Build application # 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 CMD cd build; ./otclient

Loading…
Cancel
Save