factorio-docker/0.16/Dockerfile

52 lines
1.7 KiB
Docker
Raw Normal View History

2018-01-09 23:59:21 +01:00
FROM frolvlad/alpine-glibc:alpine-3.7
2017-12-13 17:50:16 +01:00
MAINTAINER https://github.com/dtandersen/docker_factorio_server
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-03-12 23:35:36 +01:00
VERSION=0.16.30 \
SHA1=7ceac7d3cfee2c301707e2622400d2c7bc6f2e8c \
SAVES=/factorio/saves \
CONFIG=/factorio/config \
MODS=/factorio/mods \
SCENARIOS=/factorio/scenarios \
ENTRYPOINTS=/factorio/entrypoints
2017-12-13 17:50:16 +01:00
RUN mkdir -p /opt /factorio && \
2017-12-13 22:17:41 +01:00
apk add --update --no-cache pwgen && \
2017-12-13 17:50:16 +01:00
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 && \
2017-12-13 17:50:16 +01:00
rm /tmp/factorio_headless_x64_$VERSION.tar.xz && \
ln -s -f $SAVES /opt/factorio/saves && \
ln -s -f $MODS /opt/factorio/mods && \
ln -s -f $SCENARIOS /opt/factorio/scenarios && \
ln -s -f $ENTRYPOINTS /opt/factorio/entrypoints && \
2017-12-13 17:50:16 +01:00
apk del .build-deps && \
2017-12-13 19:33:51 +01:00
addgroup -g $PGID -S $GROUP && \
2018-02-03 22:15:07 +01:00
adduser -u $PUID -G $GROUP -s /bin/sh -SDH $USER && \
2017-12-13 19:33:51 +01:00
chown -R $USER:$GROUP /opt/factorio /factorio
2017-12-13 17:50:16 +01:00
VOLUME /factorio
2017-12-13 17:50:16 +01:00
EXPOSE $PORT/udp $RCON_PORT/tcp
COPY ./docker-entrypoint.sh /
COPY ./scenario2map.sh /factorio/entrypoints
2018-01-17 01:24:35 +01:00
COPY ./scenario.sh /factorio/entrypoints
2017-12-13 17:50:16 +01:00
#symbolic link the default entrypoint to the entrypoints directory so it can be inspected and copied to new entrypoints
#RUN ln -s -f /docker-entrypoint.sh $ENTRYPOINTS/docker-entrypoint.sh
2017-12-13 22:17:41 +01:00
USER $USER
2017-12-13 19:33:51 +01:00
ENTRYPOINT ["/docker-entrypoint.sh"]