Browse Source

init

tags/v1.0.0^0
Robin Thoni 6 years ago
commit
32cbe258eb
1 changed files with 11 additions and 0 deletions
  1. 11
    0
      Dockerfile

+ 11
- 0
Dockerfile View File

@@ -0,0 +1,11 @@
1
+FROM robinthoni/debian-multiarch:jessie
2
+
3
+MAINTAINER Robin Thoni <robin@rthoni.com>
4
+
5
+RUN apt-get update &&\
6
+    apt-get install -y lib32gcc1 wget tar &&\
7
+    apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
8
+
9
+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
10
+
11
+RUN cd /steamcmd && ./steamcmd.sh +login anonymous +exit

Loading…
Cancel
Save