Updated Dockerfile
This commit is contained in:
parent
99bb3fc65d
commit
10cf7532c5
27
Dockerfile
27
Dockerfile
@ -5,18 +5,33 @@ FROM debian:bookworm-slim
|
||||
LABEL maintainer="cfultz <caleb@fultz.dev>"
|
||||
|
||||
# Environment
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
ENV build linux
|
||||
|
||||
# Update the OS
|
||||
RUN apt update && apt upgrade --yes
|
||||
|
||||
# Helper libraries to compile
|
||||
RUN apt install --yes dialog apt-utils wget g++ make cmake
|
||||
RUN apt install --yes dialog apt-utils wget g++ make cmake \
|
||||
libsdl1.2-compat-dev mercurial zlib1g-dev \
|
||||
libbz2-dev libjpeg-dev libfluidsynth-dev libgtk2.0-dev timidity nasm \
|
||||
libssl-dev tar libglew-dev libgl1-mesa-dev
|
||||
|
||||
RUN apt install --yes libsdl1.2-compat-dev mercurial zlib1g-dev
|
||||
RUN cd /root/ && mkdir -pv /root/zandronum_build && mkdir -pv /root/complete
|
||||
|
||||
RUN apt install --yes libbz2-dev libjpeg-dev libfluidsynth-dev libgtk2.0-dev timidity nasm
|
||||
RUN cd /root/zandronum_build && \
|
||||
hg clone https://hg.osdn.net/view/zandronum/zandronum-stable zandronum && \
|
||||
mkdir -pv zandronum/buildclient zandronum/buildserver
|
||||
|
||||
RUN apt install --yes libssl-dev tar libglew-dev
|
||||
RUN cd /root/zandronum_build &&
|
||||
wget -nc https://zandronum.com/essentials/fmod/fmodapi44464linux.tar.gz &&
|
||||
tar -xvzf fmodapi44464linux.tar.gz -C zandronum
|
||||
|
||||
RUN c="$(lscpu -p | grep -v '#' | sort -u -t , -k 2,4 | wc -l)" ; [ "$c" -eq 0 ] && c=1 \
|
||||
cd ~/zandronum_build/zandronum/buildserver && \
|
||||
cmake .. -DCMAKE_BUILD_TYPE=Release -DSERVERONLY=ON -DRELEASE_WITH_DEBUG_FILE=OFF && \
|
||||
make -j$c
|
||||
|
||||
|
||||
RUN cp zandronum-server /root/complete/
|
||||
|
||||
RUN apt install --yes libgl1-mesa-dev
|
||||
|
Loading…
Reference in New Issue
Block a user