-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
43 lines (28 loc) · 1.01 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
FROM debian:bookworm-slim
# install deps
RUN apt update
RUN apt install -y libunwind-dev unzip screen
#Download Server Stuff
## Server executable
ADD https://playmorepromode.com/files/latest/cnq3 cnq3_server.zip
## server shellscripts
ADD https://cdn.playmorepromode.com/files/cnq3-ded-server-scripts.zip server-scripts.zip
## maps
ADD https://cdn.playmorepromode.com/files/cpma-mappack-full.zip cpma-mappack-full.zip
## cpma mod files
ADD https://playmorepromode.com/files/latest/cpma cpma_mod.zip
ADD pk3_files/* /opt/q3/baseq3/
ADD custom_start.sh /opt/q3
# unzip mod to destination
RUN unzip cpma_mod.zip -d /opt/q3/
## server config
ADD config/* /opt/q3/cpma
# unzip mappack
RUN unzip cpma-mappack-full.zip -d /opt/q3/baseq3
# unzip server executables
RUN unzip cnq3_server.zip -d /opt/q3
# unzip server scripts
RUN unzip server-scripts.zip -d /opt/q3
RUN chmod +x /opt/q3/custom_start.sh /opt/q3/start_server_1.sh /opt/q3/cnq3-server-x64
WORKDIR /opt/q3
ENTRYPOINT ["bash", "-c", "/opt/q3/custom_start.sh"]