-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
106 lines (79 loc) · 3.12 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
FROM ubuntu:jammy
LABEL author="João Carlos Palma"
################################################################################
# Environment Variables #
################################################################################
ENV PLUTONIUM_DIRECTORY="/t6server/plutonium"
ENV SERVER_DIRECTORY="/t6server/server"
ENV IW4ADMIN_DIRECTORY="/t6server/admin"
ENV UPDATER_DIRECTORY="/t6server/updater"
ENV DOWNLOAD_DIRECTORY="/t6server/downloaded_files"
ENV STATUS_DIRECTORY="/t6server/status"
ENV WINEPREFIX="/root/.wine"
ENV WINEDEBUG="fixme-all"
ENV WINEARCH="win64"
ENV SERVER_KEY="YOUR_KEY_HERE"
ENV SERVER_PORT="4976"
ENV SERVER_MODE="Zombie"
ENV LAN_MODE="false"
ENV SERVER_MAX_CLIENTS=""
ENV SERVER_RCON_PASSWORD="admin"
ENV SERVER_MAP_ROTATION=""
ENV SERVER_PASSWORD=""
ENV ADMIN_PORT="1624"
################################################################################
# Container Provisioning #
################################################################################
# Create needed directories
RUN mkdir -p $PLUTONIUM_DIRECTORY \
$SERVER_DIRECROTY \
$IW4ADMIN_DIRECTORY \
$UPDATER_DIRECTORY \
$DOWNLOAD_DIRECTORY \
$STATUS_DIRECTORY
# Update the system
RUN apt-get update
# Installing needed packages
RUN apt-get install -y \
wget \
curl \
zip \
screen \
gnupg2 \
software-properties-common \
xvfb \
aria2 \
apt-transport-https \
dotnet6 \
dotnet-sdk-6.0 \
aspnetcore-runtime-6.0 \
avahi-daemon \
avahi-utils
# Update the system
RUN apt-get upgrade -y
################################################################################
# Installing WINE #
################################################################################
COPY resources/install_wine.sh /t6server/install_wine.sh
RUN chmod +x /t6server/install_wine.sh
# [TODO] Run installer of the script in the server-launch.sh
RUN bash /t6server/install_wine.sh && rm /t6server/install_wine.sh
################################################################################
# Installing Updater #
################################################################################
COPY resources/check_updater.sh /t6server/check_updater.sh
#Make sure the script is executable by anyone
RUN chmod ugo+x /t6server/check_updater.sh
################################################################################
# Installing IW4MAdmin #
################################################################################
# Installing dotnet
RUN wget https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
dpkg -i packages-microsoft-prod.deb && \
rm packages-microsoft-prod.deb
################################################################################
# Prepare server launch
WORKDIR /t6server
COPY resources/server-launch.sh .
RUN chmod +x server-launch.sh
CMD ["./server-launch.sh"]