adds curl
This commit is contained in:
parent
b4665a0b48
commit
56c1d335ce
@ -64,6 +64,11 @@ RUN apk add --update --no-cache \\
|
||||
gettext \\
|
||||
libintl \\
|
||||
shadow && \\
|
||||
apk add --update --no-cache --virtual=.build-dependencies && \\
|
||||
curl --location --silent "${FactorioDownloadURL}" --output /tmp/factorio.tar.xz && \\
|
||||
tar -x -f /tmp/factorio.tar.xz --directory /opt && \\
|
||||
rm -v /tmp/factorio.tar.xz && \\
|
||||
apk del .build-dependencies && \\
|
||||
mkdir -p /opt/factorio \\
|
||||
/data \\
|
||||
\${SAVES} \\
|
||||
@ -71,9 +76,6 @@ RUN apk add --update --no-cache \\
|
||||
\${MODS} \\
|
||||
\${SCENARIOS} \\
|
||||
\${SCRIPT_OUTPUT} && \\
|
||||
curl --location --silent "${FactorioDownloadURL}" --output /tmp/factorio.tar.xz && \\
|
||||
tar -x -f /tmp/factorio.tar.xz --directory /opt && \\
|
||||
rm -v /tmp/factorio.tar.xz && \\
|
||||
ln -s \${SAVES} /opt/factorio/saves && \\
|
||||
ln -s \${MODS} /opt/factorio/mods && \\
|
||||
ln -s \${SCENARIOS} /opt/factorio/scenarios && \\
|
||||
|
Reference in New Issue
Block a user