|
@@ -1,5 +1,12 @@
|
|
FROM debian:stretch
|
|
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
|