You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- FROM robinthoni/debian-multiarch:jessie
-
- MAINTAINER Robin Thoni <robin@rthoni.com>
-
- RUN apt-get update &&\
- apt-get install -y lib32gcc1 wget tar &&\
- apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
-
- RUN wget https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz -O /tmp/steamcmd.tar.gz && mkdir /steamcmd && cd /steamcmd && tar xf /tmp/steamcmd.tar.gz && rm /tmp/steamcmd.tar.gz
-
- RUN cd /steamcmd && ./steamcmd.sh +login anonymous +exit
|