adds curl

This commit is contained in:
Hyatt 2022-01-28 10:14:06 -06:00
parent b4665a0b48
commit 56c1d335ce
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -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 && \\