fix docker file
This commit is contained in:
parent
7fc3229610
commit
ad2079532e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue