2017-04-24 18:00:45 +02:00
|
|
|
FROM frolvlad/alpine-glibc:alpine-3.4
|
|
|
|
|
|
|
|
MAINTAINER https://github.com/dtandersen/docker_factorio_server
|
|
|
|
|
2017-04-24 19:33:21 +02:00
|
|
|
ENV PORT=34197 \
|
|
|
|
VERSION=0.15.0 \
|
|
|
|
SHA1=e7681725203afeb0645371c695989129076e51bc
|
2017-04-24 18:00:45 +02:00
|
|
|
|
|
|
|
RUN mkdir /opt && \
|
|
|
|
apk --no-cache add curl tini pwgen && \
|
|
|
|
curl -sSL https://www.factorio.com/get-download/$VERSION/headless/linux64 \
|
2017-04-24 19:33:21 +02:00
|
|
|
-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 && \
|
2017-04-24 18:00:45 +02:00
|
|
|
apk del curl && \
|
|
|
|
ln -s /factorio/saves /opt/factorio/saves && \
|
|
|
|
ln -s /factorio/mods /opt/factorio/mods
|
|
|
|
|
|
|
|
VOLUME /factorio
|
|
|
|
|
2017-04-24 19:33:21 +02:00
|
|
|
EXPOSE $PORT/udp 27015/tcp
|
2017-04-24 18:00:45 +02:00
|
|
|
|
|
|
|
COPY ./docker-entrypoint.sh /
|
|
|
|
|
|
|
|
ENTRYPOINT ["/sbin/tini", "--"]
|
|
|
|
CMD ["/docker-entrypoint.sh"]
|