1
0
mirror of https://github.com/LpmRaven/factorio-docker-server.git synced 2025-03-03 15:22:09 +02:00

17 lines
521 B
Docker
Raw Normal View History

2016-03-04 08:55:08 +01:00
FROM ubuntu:14.04
MAINTAINER Carlo Eugster <carlo@relaun.ch>
RUN apt-get update \
&& apt-get install -y wget \
&& rm -rf /var/lib/apt/lists/*
RUN wget -q -O - https://www.factorio.com/download-headless/stable | grep -o "/get-download/.*/headless/linux64" | awk '{print "--no-check-certificate https://www.factorio.com"$1" -O /tmp/factorio.tar.gz"}' | xargs wget \
2016-03-04 08:55:08 +01:00
&& tar -xzf /tmp/factorio.tar.gz -C /opt \
&& rm -rf /tmp/factorio.tar.gz
ADD init.sh /opt/factorio/
WORKDIR /opt/factorio
CMD ["./init.sh"]