factorio-docker/Dockerfile
2016-03-04 14:21:38 +01:00

24 lines
441 B
Docker

FROM ubuntu:latest
MAINTAINER zopanix@gmail.com
WORKDIR /opt
COPY ./smart_launch.sh /opt
RUN apt-get update && \
apt-get install -y curl && \
curl -o /opt/factorio.tar.gz https://www.factorio.com/get-download/0.12.25/headless/linux64 &&\
tar -xzf /opt/factorio.tar.gz && \
rm -rf /opt/factorio.tar.gz && \
apt-purge-build &&\
apt-clean
CMD ["./smart_launch.sh"]
EXPOSE 34197/udp
VOLUME "/opt/factorio/saves"