We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ca56f0 commit b87c3daCopy full SHA for b87c3da
1 file changed
kubernetes/dedicated-servers/darkMessiah/DockerFile
@@ -16,12 +16,13 @@ USER steam
16
WORKDIR /home/steam
17
18
# 3. Instala SteamCMD
19
-RUN mkdir steamcmd \
+RUN mkdir -p steamcmd \
20
&& cd steamcmd \
21
- && wget -qO- https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz \
22
- | tar zxvf - \
+ && wget -q https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz \
+ -O steamcmd_linux.tar.gz \
23
+ && tar -xzf steamcmd_linux.tar.gz \
24
+ && rm steamcmd_linux.tar.gz \
25
&& cd ..
-
26
# 4. Descarga el servidor dedicado (Windows) vía SteamCMD
27
RUN ./steamcmd/steamcmd.sh +login anonymous \
28
+force_install_dir /home/steam/dm_srv \
0 commit comments