Skip to content

Commit

Permalink
Update Dockerfile to wget entry.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
xalimar committed May 2, 2022
1 parent 2b1aa19 commit 0b75be9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $ docker volume create corekeeper_save_volume
Unfortunately Core Keeper doesn't allow anonymous access to download the game, so we have to authenticate one-time to save this container as a trusted device.

```console
$ docker run -it \
$ docker run -it --rm \
-v "steamcmd_login_volume:/home/steam/Steam" \
-v "steamcmd_volume:/home/steam/steamcmd" \
core-keeper-dedicated \
Expand Down
4 changes: 1 addition & 3 deletions buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ ENV DLURL="https://raw.githubusercontent.com/xalimar/core-keeper-dedicated"
ENV STEAM_BETA_NAME=experimental
ENV APPSAVEDIR="${HOMEDIR}/.config/unity3d/Pugstorm/Core Keeper"

COPY entry.sh /home/steam/entry.sh

RUN set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends --no-install-suggests \
wget \
xvfb \
&& mkdir "${STEAMAPPDIR}" \
&& mkdir -p "${APPSAVEDIR}" \
# && wget --max-redirect=30 "${DLURL}/main/etc/entry.sh" -O "${HOMEDIR}/entry.sh" \
&& wget --max-redirect=30 "${DLURL}/main/etc/entry.sh" -O "${HOMEDIR}/entry.sh" \
&& chmod +x "${HOMEDIR}/entry.sh" \
&& chown -R "${USER}:${USER}" "${HOMEDIR}/entry.sh" "${STEAMAPPDIR}" "${HOMEDIR}/.config" \
&& rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 0b75be9

Please sign in to comment.