mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-12-28 11:58:22 +01:00
Improve image stages (#509)
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
parent
ee0388e163
commit
c269289a96
@ -16,19 +16,11 @@ ARG BOX64_VERSION=v0.2.4
|
|||||||
# space-exploration
|
# space-exploration
|
||||||
ARG PRESET
|
ARG PRESET
|
||||||
|
|
||||||
# version checksum of the archive to download
|
|
||||||
ARG VERSION
|
|
||||||
ARG SHA256
|
|
||||||
|
|
||||||
LABEL factorio.version=${VERSION}
|
|
||||||
|
|
||||||
# number of retries that curl will use when pulling the headless server tarball
|
# number of retries that curl will use when pulling the headless server tarball
|
||||||
ARG CURL_RETRIES=8
|
ARG CURL_RETRIES=8
|
||||||
|
|
||||||
ENV PORT=34197 \
|
ENV PORT=34197 \
|
||||||
RCON_PORT=27015 \
|
RCON_PORT=27015 \
|
||||||
VERSION=${VERSION} \
|
|
||||||
SHA256=${SHA256} \
|
|
||||||
SAVES=/factorio/saves \
|
SAVES=/factorio/saves \
|
||||||
PRESET="$PRESET" \
|
PRESET="$PRESET" \
|
||||||
CONFIG=/factorio/config \
|
CONFIG=/factorio/config \
|
||||||
@ -39,6 +31,31 @@ ENV PORT=34197 \
|
|||||||
PGID="$PGID"
|
PGID="$PGID"
|
||||||
|
|
||||||
SHELL ["/bin/bash", "-eo", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-eo", "pipefail", "-c"]
|
||||||
|
|
||||||
|
RUN apt-get -q update \
|
||||||
|
&& DEBIAN_FRONTEND=noninteractive apt-get -qy install ca-certificates curl jq pwgen xz-utils procps gettext-base --no-install-recommends \
|
||||||
|
&& if [[ "$(uname -m)" == "aarch64" ]]; then \
|
||||||
|
echo "installing ARM compatability layer" \
|
||||||
|
&& DEBIAN_FRONTEND=noninteractive apt-get -qy install unzip --no-install-recommends \
|
||||||
|
&& curl -LO https://github.com/ptitSeb/box64/releases/download/${BOX64_VERSION}/box64-GENERIC_ARM-RelWithDebInfo.zip \
|
||||||
|
&& unzip box64-GENERIC_ARM-RelWithDebInfo.zip -d /bin \
|
||||||
|
&& rm -f box64-GENERIC_ARM-RelWithDebInfo.zip \
|
||||||
|
&& chmod +x /bin/box64; \
|
||||||
|
fi \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
RUN addgroup --system --gid "$PGID" "$GROUP" \
|
||||||
|
&& adduser --system --uid "$PUID" --gid "$PGID" --no-create-home --disabled-password --shell /bin/sh "$USER"
|
||||||
|
|
||||||
|
# version checksum of the archive to download
|
||||||
|
ARG VERSION
|
||||||
|
ARG SHA256
|
||||||
|
|
||||||
|
LABEL factorio.version=${VERSION}
|
||||||
|
|
||||||
|
ENV VERSION=${VERSION} \
|
||||||
|
SHA256=${SHA256}
|
||||||
|
|
||||||
RUN set -ox pipefail \
|
RUN set -ox pipefail \
|
||||||
&& if [[ "${VERSION}" == "" ]]; then \
|
&& if [[ "${VERSION}" == "" ]]; then \
|
||||||
echo "build-arg VERSION is required" \
|
echo "build-arg VERSION is required" \
|
||||||
@ -50,28 +67,15 @@ RUN set -ox pipefail \
|
|||||||
fi \
|
fi \
|
||||||
&& archive="/tmp/factorio_headless_x64_$VERSION.tar.xz" \
|
&& archive="/tmp/factorio_headless_x64_$VERSION.tar.xz" \
|
||||||
&& mkdir -p /opt /factorio \
|
&& mkdir -p /opt /factorio \
|
||||||
&& apt-get -q update \
|
&& curl -sSL "https://www.factorio.com/get-download/$VERSION/headless/linux64" -o "$archive" --retry $CURL_RETRIES \
|
||||||
&& DEBIAN_FRONTEND=noninteractive apt-get -qy install ca-certificates curl jq pwgen xz-utils procps gettext-base --no-install-recommends \
|
|
||||||
&& curl -sSL "https://www.factorio.com/get-download/$VERSION/headless/linux64" -o "$archive" --retry $CURL_RETRIES\
|
|
||||||
&& echo "$SHA256 $archive" | sha256sum -c \
|
&& echo "$SHA256 $archive" | sha256sum -c \
|
||||||
|| (sha256sum "$archive" && file "$archive" && exit 1) \
|
|| (sha256sum "$archive" && file "$archive" && exit 1) \
|
||||||
&& tar xf "$archive" --directory /opt \
|
&& tar xf "$archive" --directory /opt \
|
||||||
&& chmod ugo=rwx /opt/factorio \
|
&& chmod ugo=rwx /opt/factorio \
|
||||||
&& rm "$archive" \
|
&& rm "$archive" \
|
||||||
&& if [[ "$(uname -m)" == "aarch64" ]]; then \
|
|
||||||
echo "installing ARM compatability layer" \
|
|
||||||
&& DEBIAN_FRONTEND=noninteractive apt-get -qy install unzip --no-install-recommends \
|
|
||||||
&& curl -LO https://github.com/ptitSeb/box64/releases/download/${BOX64_VERSION}/box64-GENERIC_ARM-RelWithDebInfo.zip \
|
|
||||||
&& unzip box64-GENERIC_ARM-RelWithDebInfo.zip -d /bin \
|
|
||||||
&& rm -f box64-GENERIC_ARM-RelWithDebInfo.zip \
|
|
||||||
&& chmod +x /bin/box64; \
|
|
||||||
fi \
|
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
|
||||||
&& ln -s "$SCENARIOS" /opt/factorio/scenarios \
|
&& ln -s "$SCENARIOS" /opt/factorio/scenarios \
|
||||||
&& ln -s "$SAVES" /opt/factorio/saves \
|
&& ln -s "$SAVES" /opt/factorio/saves \
|
||||||
&& mkdir -p /opt/factorio/config/ \
|
&& mkdir -p /opt/factorio/config/ \
|
||||||
&& addgroup --system --gid "$PGID" "$GROUP" \
|
|
||||||
&& adduser --system --uid "$PUID" --gid "$PGID" --no-create-home --disabled-password --shell /bin/sh "$USER" \
|
|
||||||
&& chown -R "$USER":"$GROUP" /opt/factorio /factorio
|
&& chown -R "$USER":"$GROUP" /opt/factorio /factorio
|
||||||
|
|
||||||
COPY files/*.sh /
|
COPY files/*.sh /
|
||||||
|
Loading…
Reference in New Issue
Block a user