Created
March 18, 2017 20:26
-
-
Save Xanir/edf2948b746a64e9dfd2fd80da6fbdd9 to your computer and use it in GitHub Desktop.
7Days to Die Docker Image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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