2016-02-26 11:09:47 +01:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
MAINTAINER zopanix@gmail.com
|
|
|
|
|
|
|
|
WORKDIR /opt
|
|
|
|
|
2016-02-26 14:59:01 +01:00
|
|
|
COPY ./smart_launch.sh /opt
|
2016-02-26 11:09:47 +01:00
|
|
|
|
2016-03-04 13:35:29 +01:00
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -y curl && \
|
2016-03-04 14:21:38 +01:00
|
|
|
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 && \
|
2016-03-04 13:35:29 +01:00
|
|
|
apt-purge-build &&\
|
|
|
|
apt-clean
|
|
|
|
|
2016-02-26 11:09:47 +01:00
|
|
|
|
2016-02-26 14:59:01 +01:00
|
|
|
CMD ["./smart_launch.sh"]
|
2016-02-26 11:09:47 +01:00
|
|
|
|
|
|
|
EXPOSE 34197/udp
|
|
|
|
|
|
|
|
VOLUME "/opt/factorio/saves"
|
|
|
|
|