mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-11-10 20:57:23 +01:00
24 lines
441 B
Docker
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"
|
|
|