mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-11-07 19:27:24 +01:00
19 lines
227 B
Docker
19 lines
227 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
|
|
|
|
CMD ["./smart_launch.sh"]
|
|
|
|
EXPOSE 34197/udp
|
|
|
|
VOLUME "/opt/factorio/saves"
|
|
|