FROM frolvlad/alpine-glibc:alpine-3.4 MAINTAINER https://github.com/dtandersen/docker_factorio_server ENV PORT=34197 \ VERSION=0.15.0 \ SHA1=e7681725203afeb0645371c695989129076e51bc RUN mkdir /opt && \ apk --no-cache add curl tini pwgen && \ 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 && \ rm /tmp/factorio_headless_x64_$VERSION.tar.xz && \ apk del curl && \ ln -s /factorio/saves /opt/factorio/saves && \ ln -s /factorio/mods /opt/factorio/mods VOLUME /factorio EXPOSE $PORT/udp 27015/tcp COPY ./docker-entrypoint.sh / ENTRYPOINT ["/sbin/tini", "--"] CMD ["/docker-entrypoint.sh"]