2020-06-19 18:44:49 +02:00
|
|
|
FROM frolvlad/alpine-glibc:alpine-3.12
|
2017-12-13 17:50:16 +01:00
|
|
|
|
2019-05-15 13:07:30 +02:00
|
|
|
LABEL maintainer="https://github.com/factoriotools/factorio-docker"
|
2017-12-13 17:50:16 +01:00
|
|
|
|
2017-12-13 19:33:51 +01:00
|
|
|
ARG USER=factorio
|
|
|
|
ARG GROUP=factorio
|
|
|
|
ARG PUID=845
|
|
|
|
ARG PGID=845
|
|
|
|
|
2017-12-13 17:50:16 +01:00
|
|
|
ENV PORT=34197 \
|
|
|
|
RCON_PORT=27015 \
|
2018-06-15 14:42:59 +02:00
|
|
|
VERSION=0.16.51 \
|
|
|
|
SHA1=127e7ff484ab263b13615d6114013ce0a66ac929 \
|
2018-03-12 17:54:17 +01:00
|
|
|
SAVES=/factorio/saves \
|
|
|
|
CONFIG=/factorio/config \
|
|
|
|
MODS=/factorio/mods \
|
2018-05-02 21:44:34 +02:00
|
|
|
SCENARIOS=/factorio/scenarios \
|
2019-05-17 12:32:55 +02:00
|
|
|
SCRIPTOUTPUT=/factorio/script-output \
|
|
|
|
PUID="$PUID" \
|
|
|
|
PGID="$PGID"
|
2017-12-13 17:50:16 +01:00
|
|
|
|
2019-07-13 12:04:34 +02:00
|
|
|
RUN mkdir -p /opt /factorio \
|
|
|
|
&& apk add --update --no-cache pwgen su-exec shadow \
|
|
|
|
&& apk add --update --no-cache --virtual .build-deps curl \
|
|
|
|
&& curl -sSL https://www.factorio.com/get-download/$VERSION/headless/linux64 \
|
|
|
|
-o /tmp/factorio_headless_x64_$VERSION.tar.xz \
|
|
|
|
&& echo "$SHA1 /tmp/factorio_headless_x64_$VERSION.tar.xz" | sha1sum -c \
|
|
|
|
&& tar xf /tmp/factorio_headless_x64_$VERSION.tar.xz --directory /opt \
|
|
|
|
&& chmod ugo=rwx /opt/factorio \
|
|
|
|
&& rm /tmp/factorio_headless_x64_$VERSION.tar.xz \
|
|
|
|
&& ln -s $SAVES /opt/factorio/saves \
|
|
|
|
&& ln -s $MODS /opt/factorio/mods \
|
|
|
|
&& ln -s $SCENARIOS /opt/factorio/scenarios \
|
|
|
|
&& ln -s $SCRIPTOUTPUT /opt/factorio/script-output \
|
|
|
|
&& apk del .build-deps \
|
|
|
|
&& addgroup -g $PGID -S $GROUP \
|
|
|
|
&& adduser -u $PUID -G $GROUP -s /bin/sh -SDH $USER \
|
|
|
|
&& chown -R $USER:$GROUP /opt/factorio /factorio
|
2017-12-13 17:50:16 +01:00
|
|
|
|
2018-03-12 17:38:40 +01:00
|
|
|
VOLUME /factorio
|
2017-12-28 13:37:23 +01:00
|
|
|
|
2017-12-13 17:50:16 +01:00
|
|
|
EXPOSE $PORT/udp $RCON_PORT/tcp
|
|
|
|
|
2018-03-19 18:28:40 +01:00
|
|
|
COPY files/ /
|
2018-03-12 17:38:40 +01:00
|
|
|
|
2017-12-13 19:33:51 +01:00
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|