mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-11-07 11:17:23 +01:00
27 lines
556 B
Docker
27 lines
556 B
Docker
FROM ubuntu:latest
|
|
|
|
MAINTAINER zopanix@gmail.com
|
|
|
|
WORKDIR /opt
|
|
|
|
COPY ./smart_launch.sh /opt
|
|
|
|
RUN echo "# Installing WGET" && \
|
|
apt-get update && \
|
|
apt-get install -y curl && \
|
|
echo "# Downloading and unzipping factorio" && \
|
|
curl -L -k https://www.factorio.com/get-download/0.12.25/headless/linux64 | tar -xzf - && \
|
|
echo "# Cleaning" && \
|
|
apt-get remove -y --purge curl && \
|
|
apt-get autoremove -y --purge && \
|
|
apt-purge-build && \
|
|
apt-clean
|
|
|
|
|
|
CMD ["./smart_launch.sh"]
|
|
|
|
EXPOSE 34197/udp
|
|
|
|
VOLUME "/opt/factorio/saves"
|
|
|