Skip to content

Instantly share code, notes, and snippets.

@Xanir
Created March 18, 2017 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xanir/edf2948b746a64e9dfd2fd80da6fbdd9 to your computer and use it in GitHub Desktop.
Save Xanir/edf2948b746a64e9dfd2fd80da6fbdd9 to your computer and use it in GitHub Desktop.
7Days to Die Docker Image
FROM ubuntu:16.10
RUN apt-get update && \
apt-get upgrade && \
apt-get install -y curl lib32gcc1 && \
mkdir /var/steam && \
cd /var/steam && \
curl -sqL http://media.steampowered.com/installer/steamcmd_linux.tar.gz | tar zxvf -
RUN mkdir /var/steam/7DaysToDie && \
/var/steam/steamcmd.sh +login anonymous +force_install_dir /var/steam/7DaysToDie +app_update 294420 +quit
WORKDIR /var/steam/7DaysToDie
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment