mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-06-28 13:08:06 +02:00
use server-settings.json for settings
This commit is contained in:
27
Dockerfile
27
Dockerfile
@ -1,28 +1,25 @@
|
||||
FROM frolvlad/alpine-glibc:alpine-3.3_glibc-2.23
|
||||
|
||||
MAINTAINER zopanix <zopanix@gmail.com>
|
||||
MAINTAINER https://github.com/dtandersen/docker_factorio_server
|
||||
|
||||
WORKDIR /opt
|
||||
#WORKDIR /opt
|
||||
|
||||
COPY ./smart_launch.sh /opt
|
||||
COPY ./factorio.crt /opt
|
||||
COPY ./factorio.crt /opt/factorio.crt
|
||||
|
||||
VOLUME /opt/factorio/saves /opt/factorio/mods
|
||||
EXPOSE 34197/udp 27015/tcp
|
||||
|
||||
ENV FACTORIO_AUTOSAVE_INTERVAL=2 \
|
||||
FACTORIO_AUTOSAVE_SLOTS=3 \
|
||||
FACTORIO_DISSALOW_COMMANDS=true \
|
||||
FACTORIO_NO_AUTO_PAUSE=false \
|
||||
VERSION=0.14.14 \
|
||||
FACTORIO_SHA1=decd1ef34a75b309791e65bc92b164f10479753b
|
||||
|
||||
ENV VERSION=0.14.14 \
|
||||
SHA1=decd1ef34a75b309791e65bc92b164f10479753b
|
||||
|
||||
RUN apk --update add bash curl && \
|
||||
curl -sSL --cacert /opt/factorio.crt https://www.factorio.com/get-download/$VERSION/headless/linux64 -o /tmp/factorio_headless_x64_$VERSION.tar.gz && \
|
||||
echo "$FACTORIO_SHA1 /tmp/factorio_headless_x64_$VERSION.tar.gz" | sha1sum -c && \
|
||||
tar xzf /tmp/factorio_headless_x64_$VERSION.tar.gz && \
|
||||
echo "$SHA1 /tmp/factorio_headless_x64_$VERSION.tar.gz" | sha1sum -c && \
|
||||
tar xzf /tmp/factorio_headless_x64_$VERSION.tar.gz --directory /opt && \
|
||||
rm /tmp/factorio_headless_x64_$VERSION.tar.gz
|
||||
VOLUME /opt/factorio/saves /opt/factorio/mods
|
||||
|
||||
EXPOSE 34197/udp
|
||||
COPY ./smart_launch.sh /opt
|
||||
|
||||
CMD ["./smart_launch.sh"]
|
||||
CMD ["/opt/smart_launch.sh"]
|
||||
|
||||
|
Reference in New Issue
Block a user