1
0
mirror of https://github.com/factoriotools/factorio-docker.git synced 2025-01-30 04:30:49 +02:00

29 lines
939 B
Docker
Raw Normal View History

2017-06-01 18:31:53 +00:00
FROM frolvlad/alpine-glibc:alpine-3.6
2017-04-24 09:00:45 -07:00
MAINTAINER https://github.com/dtandersen/docker_factorio_server
2017-04-24 17:33:21 +00:00
ENV PORT=34197 \
2017-07-13 19:42:12 +00:00
VERSION=0.15.29 \
SHA1=6222b8707028aea71e1dc6c7cf89d35b6ef14271
2017-04-24 09:00:45 -07:00
RUN mkdir /opt && \
2017-04-24 20:19:30 +00:00
apk add --update --no-cache tini pwgen && \
apk add --update --no-cache --virtual .build-deps curl && \
2017-04-24 09:00:45 -07:00
curl -sSL https://www.factorio.com/get-download/$VERSION/headless/linux64 \
2017-04-24 17:33:21 +00: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 09:00:45 -07:00
ln -s /factorio/saves /opt/factorio/saves && \
2017-04-24 20:19:30 +00:00
ln -s /factorio/mods /opt/factorio/mods && \
apk del .build-deps
2017-04-24 09:00:45 -07:00
VOLUME /factorio
2017-04-24 17:33:21 +00:00
EXPOSE $PORT/udp 27015/tcp
2017-04-24 09:00:45 -07:00
COPY ./docker-entrypoint.sh /
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/docker-entrypoint.sh"]