Skip to content

Commit

Permalink
fix steamcmd download
Browse files Browse the repository at this point in the history
  • Loading branch information
ripps818 committed Feb 16, 2024
1 parent 80dfd87 commit 27442fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ RUN curl -fsSLO "$RCON_URL" \

# Install Windows version of SteamCmd
ENV STEAMCMD_URL="http://media.steampowered.com/installer/steamcmd.zip"
RUN curl -fsSL "$STEAMCMD_URL" -o steamcmd.zip && \
RUN mkdir -p ${STEAMCMD_PATH}
RUN curl -fsSLO "$STEAMCMD_URL" && \
unzip steamcmd.zip -d ${STEAMCMD_PATH} && \
rm -rf steamcmd.zip

Expand Down

0 comments on commit 27442fe

Please sign in to comment.