1
0
mirror of https://github.com/bplein/factorio-docker.git synced 2025-01-24 03:46:49 +02:00
2016-02-26 14:59:01 +01:00

21 lines
250 B
Docker

FROM ubuntu:latest
MAINTAINER zopanix@gmail.com
WORKDIR /opt
COPY ./factorio.tar.gz /opt
COPY ./smart_launch.sh /opt
RUN tar -xzf factorio.tar.gz
WORKDIR /opt/factorio
CMD ["./smart_launch.sh"]
EXPOSE 34197/udp
VOLUME "/opt/factorio/saves"