Răsfoiți Sursa

download launcher

Fabian Peter Hammerle 6 ani în urmă
părinte
comite
5f87f0f9a3
1 a modificat fișierele cu 9 adăugiri și 2 ștergeri
  1. 9 2
      Dockerfile

+ 9 - 2
Dockerfile

@@ -1,5 +1,12 @@
 FROM debian:stretch
 
-# https://download.toontownrewritten.com/launcher/linux/TTRLinux-v1.2.3.tar.gz
+RUN apt-get update && apt-get install -y \
+    wget
 
-CMD echo hello world
+# download launcher
+RUN wget -O /tmp/ttr.tar.gz \
+    https://download.toontownrewritten.com/launcher/linux/TTRLinux-v1.2.3.tar.gz
+RUN mkdir /opt/ttr
+RUN tar -x -v --strip-components 1 -C /opt/ttr -f /tmp/ttr.tar.gz
+
+CMD ls -la /opt/ttr/Launcher