You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
FROM debian:latest as builder
|
|
MAINTAINER Santic <admin@santic-zombie.ru>
|
|
|
|
RUN apt-get update && apt-get install -y git libcurl4-gnutls-dev \
|
|
build-essential libsdl2-dev zlib1g-dev
|
|
|
|
RUN git clone https://github.com/skullernet/q2pro && \
|
|
git clone https://github.com/skullernet/openffa && \
|
|
git clone https://github.com/skullernet/opentdm
|
|
|
|
COPY config /q2pro/.config
|
|
WORKDIR /q2pro
|
|
RUN make
|
|
|
|
WORKDIR /openffa
|
|
RUN make
|
|
|
|
WORKDIR /opentdm
|
|
RUN make
|
|
|
|
|
|
FROM debian:latest
|
|
|
|
RUN useradd -m -s /bin/bash quake2 && \
|
|
mkdir -p /usr/local/lib/games/q2pro/baseq2 && \
|
|
mkdir -p /usr/local/lib/games/q2pro/openffa && \
|
|
mkdir -p /usr/local/lib/games/q2pro/opentdm
|
|
|
|
|
|
COPY --from=builder /q2pro/gamex86_64.so \
|
|
/usr/local/lib/games/q2pro/baseq2/gamex86_64.so
|
|
COPY --from=builder /openffa/gamex86_64.so \
|
|
/usr/local/lib/games/q2pro/openffa/gamex86_64.so
|
|
COPY --from=builder /opentdm/gamex86_64.so \
|
|
/usr/local/lib/games/q2pro/opentdm/gamex86_64.so
|
|
COPY --from=builder /q2pro/q2proded /usr/local/bin
|
|
|
|
EXPOSE 27910/udp
|
|
|
|
USER quake2
|
|
|
|
ENTRYPOINT ["q2proded"]
|
|
|
|
|
|
|