Added creation and symlinking of scenarios directory, creation and symlinking of an entrypoints directory for custom entrypoints, and two examples of using entrypoints with scenarios

This commit is contained in:
Bill
2018-01-16 17:59:28 -06:00
parent 189395d5c8
commit 4449e13675
5 changed files with 128 additions and 1 deletions

View File

@ -23,6 +23,8 @@ RUN mkdir -p /opt /factorio && \
rm /tmp/factorio_headless_x64_$VERSION.tar.xz && \
ln -s /factorio/saves /opt/factorio/saves && \
ln -s /factorio/mods /opt/factorio/mods && \
ln -s /factorio/scenarios /opt/factorio/scenarios && \
ln -s /factorio/entrypoints /opt/factorio/entrypoints && \
apk del .build-deps && \
addgroup -g $PGID -S $GROUP && \
adduser -u $PUID -G $USER -s /bin/sh -SDH $GROUP && \