-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set version of factorio to 0.12.35 Refactor image to make it more light weight
- Loading branch information
Christophe Vandekerchove
committed
Jul 6, 2016
1 parent
b9a40b1
commit d43af49
Showing
3 changed files
with
7 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ MAINTAINER zopanix <[email protected]> | |
WORKDIR /opt | ||
|
||
COPY ./new_smart_launch.sh /opt | ||
COPY ./factorio.crt /opt | ||
|
||
VOLUME /opt/factorio/saves /opt/factorio/mods | ||
|
||
|
@@ -14,13 +13,14 @@ ENV FACTORIO_AUTOSAVE_INTERVAL=2 \ | |
FACTORIO_ALLOW_COMMANDS=false \ | ||
FACTORIO_NO_AUTO_PAUSE=false \ | ||
FACTORIO_LATENCY_MS=100 \ | ||
VERSION=0.13.4 \ | ||
FACTORIO_SHA1=6150d66178c60c0487905e664648f755ff26a252 \ | ||
VERSION=0.13.5 \ | ||
FACTORIO_SHA1=34d2601e463995a035ebb882ef0e304c11d50249 \ | ||
FACTORIO_WAITING=false \ | ||
FACTORIO_MODE=normal | ||
|
||
RUN apk --update add bash curl && \ | ||
curl -sSL --cacert /opt/factorio.crt https://www.factorio.com/get-download/$VERSION/headless/linux64 -o /tmp/factorio_headless_x64_$VERSION.tar.gz && \ | ||
ADD https://www.factorio.com/get-download/$VERSION/headless/linux64 /tmp/factorio_headless_x64_$VERSION.tar.gz | ||
|
||
RUN apk --update add bash && \ | ||
echo "$FACTORIO_SHA1 /tmp/factorio_headless_x64_$VERSION.tar.gz" | sha1sum -c && \ | ||
tar xzf /tmp/factorio_headless_x64_$VERSION.tar.gz && \ | ||
rm /tmp/factorio_headless_x64_$VERSION.tar.gz | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.