mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-06-28 13:08:06 +02:00
Added feature alpine with ssl verification and sha1 verification of the image
This commit is contained in:
41
Dockerfile
41
Dockerfile
@ -1,34 +1,27 @@
|
||||
FROM debian:latest
|
||||
FROM frolvlad/alpine-glibc:alpine-3.3_glibc-2.23
|
||||
|
||||
MAINTAINER zopanix <zopanix@gmail.com>
|
||||
|
||||
WORKDIR /opt
|
||||
|
||||
COPY ./smart_launch.sh /opt
|
||||
COPY ./factorio.crt /opt
|
||||
|
||||
CMD ["./smart_launch.sh"]
|
||||
VOLUME /opt/factorio/saves /opt/factorio/mods
|
||||
|
||||
ENV FACTORIO_AUTOSAVE_INTERVAL 2 \
|
||||
FACTORIO_AUTOSAVE_SLOTS 3 \
|
||||
FACTORIO_DISSALOW_COMMANDS true \
|
||||
FACTORIO_NO_AUTO_PAUSE false \
|
||||
VERSION=0.12.30 \
|
||||
FACTORIO_SHA1=77d92ecc52989f3283462fd5c9b5ba07eb6081cc
|
||||
|
||||
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 && \
|
||||
rm /tmp/factorio_headless_x64_$VERSION.tar.gz
|
||||
|
||||
EXPOSE 34197/udp
|
||||
|
||||
VOLUME "/opt/factorio/saves"
|
||||
|
||||
VOLUME "/opt/factorio/mods"
|
||||
|
||||
ENV FACTORIO_AUTOSAVE_INTERVAL 2
|
||||
|
||||
ENV FACTORIO_AUTOSAVE_SLOTS 3
|
||||
|
||||
ENV FACTORIO_DISSALOW_COMMANDS true
|
||||
|
||||
ENV FACTORIO_NO_AUTO_PAUSE false
|
||||
|
||||
RUN echo "# Installing curl" && \
|
||||
apt-get update && \
|
||||
apt-get install -y curl && \
|
||||
echo "# Downloading and unzipping factorio" && \
|
||||
curl -L -k https://www.factorio.com/get-download/0.12.30/headless/linux64 | tar -xzf - && \
|
||||
echo "# Cleaning" && \
|
||||
apt-get remove -y --purge curl && \
|
||||
apt-get autoremove -y --purge && \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
CMD ["./smart_launch.sh"]
|
||||
|
Reference in New Issue
Block a user