fix docker file

This commit is contained in:
Gesche 2019-02-02 12:29:33 +01:00
parent 7fc3229610
commit ad2079532e
1 changed files with 2 additions and 2 deletions

View File

@ -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