feat(docker): allow script-less build (#2337)
This commit is contained in:
parent
ec57cdfbcb
commit
0651e77123
2 changed files with 13 additions and 1 deletions
9
bin/acore-docker-build-no-scripts
Executable file
9
bin/acore-docker-build-no-scripts
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
docker build --build-arg ENABLE_SCRIPTS=0 -t acbuild -f docker/build/Dockerfile .
|
||||
|
||||
docker run \
|
||||
-v /$(pwd)/docker/build/cache:/azerothcore/build \
|
||||
-v /$(pwd)/docker/worldserver/bin:/binworldserver \
|
||||
-v /$(pwd)/docker/authserver/bin:/binauthserver \
|
||||
acbuild
|
||||
|
|
@ -11,9 +11,12 @@ ADD src /azerothcore/src
|
|||
ADD modules /azerothcore/modules
|
||||
ADD CMakeLists.txt /azerothcore/CMakeLists.txt
|
||||
|
||||
ARG ENABLE_SCRIPTS=1
|
||||
ENV ENABLE_SCRIPTS=$ENABLE_SCRIPTS
|
||||
|
||||
ENTRYPOINT cd azerothcore/build && \
|
||||
# run cmake
|
||||
cmake ../ -DCMAKE_INSTALL_PREFIX=/azeroth-server -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DTOOLS=0 -DSCRIPTS=1 && \
|
||||
cmake ../ -DCMAKE_INSTALL_PREFIX=/azeroth-server -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DTOOLS=0 -DSCRIPTS=$ENABLE_SCRIPTS && \
|
||||
# calculate the optimal number of threads
|
||||
MTHREADS=`grep -c ^processor /proc/cpuinfo`; MTHREADS=$(($MTHREADS + 2)) && \
|
||||
# run compilation
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue