Browse Source

upgrade debian for new steamcmd

tags/v2.0.0^0
Robin Thoni 2 years ago
parent
commit
0d62e97856
Signed by: Robin THONI <robin@rthoni.com> GPG Key ID: 4E09DEF46B99E61E
1 changed files with 18 additions and 3 deletions
  1. 18
    3
      Dockerfile

+ 18
- 3
Dockerfile View File

@@ -1,11 +1,26 @@
1
-FROM robinthoni/debian-multiarch:jessie
1
+FROM debian:buster
2 2
 
3 3
 MAINTAINER Robin Thoni <robin@rthoni.com>
4 4
 
5 5
 RUN apt-get update &&\
6
-    apt-get install -y lib32gcc1 wget tar &&\
6
+    apt-get install -y \
7
+      lib32gcc1 \
8
+      #lib32gcc-s1 \
9
+      wget \
10
+      ca-certificates \
11
+      locales \
12
+      tar \
13
+    &&\
7 14
     apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
8 15
 
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
16
+RUN locale-gen "en_US.UTF-8"
17
+
18
+ENV LC_ALL="en_US.UTF-8"
19
+
20
+RUN wget https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz -O /tmp/steamcmd.tar.gz && \
21
+  mkdir /steamcmd && \
22
+  cd /steamcmd && \
23
+  tar xf /tmp/steamcmd.tar.gz && \
24
+  rm /tmp/steamcmd.tar.gz
10 25
 
11 26
 RUN cd /steamcmd && ./steamcmd.sh +login anonymous +exit

Loading…
Cancel
Save