mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-01-24 08:44:44 +01:00
21 lines
250 B
Docker
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"
|
|
|