소스 검색

download launcher

Fabian Peter Hammerle 6 년 전
부모
커밋
5f87f0f9a3
1개의 변경된 파일9개의 추가작업 그리고 2개의 파일을 삭제
  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