From 0ee5c4184fe7fb761240cd15b24d3cb4e71b0904 Mon Sep 17 00:00:00 2001 From: Alexandre Gauthier Date: Wed, 4 Dec 2024 19:53:27 -0500 Subject: [PATCH] Use modern syntax for volume definition in dockerfile Fixes issue where recreation of container may fail while trying to interpret this for its mount points --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7ddf0a3..e01e118 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,7 +55,7 @@ COPY files/config.ini config/config.ini COPY files/run.sh . RUN chmod +x ./run.sh -VOLUME [${FACTORIO_VOLUME}] +VOLUME ${FACTORIO_VOLUME} EXPOSE ${FACTORIO_PORT}/udp ${FACTORIO_RCON_PORT}/tcp