diff --git a/Dockerfile b/Dockerfile index 06d469e..4e61240 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,11 +4,16 @@ MAINTAINER zopanix@gmail.com WORKDIR /opt -COPY ./factorio.tar.gz /opt - COPY ./smart_launch.sh /opt -RUN tar -xzf factorio.tar.gz +RUN apt-get update && \ + apt-get install -y curl && \ + curl -o factorio.tar.gz https://www.factorio.com/get-download/0.12.25/headless/linux64 &&\ + tar -xzf factorio.tar.gz && \ + rm -rf factorio.tar.gz && \ + apt-purge-build &&\ + apt-clean + CMD ["./smart_launch.sh"] diff --git a/factorio.tar.gz b/factorio.tar.gz deleted file mode 100644 index ab56443..0000000 Binary files a/factorio.tar.gz and /dev/null differ diff --git a/save.zip b/save.zip deleted file mode 100644 index 701edc9..0000000 Binary files a/save.zip and /dev/null differ