From e149fceec2b29ae4646356747cb27d7356d7c22c Mon Sep 17 00:00:00 2001 From: wylab Date: Tue, 16 Dec 2025 07:10:13 +0100 Subject: [PATCH] Fix config path - files go to root, not publish/ The SS14.Server zip extracts files to root, not a publish/ subdirectory. Config files were being placed in non-existent /ss14-default/publish/. --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 835f85a..3036ecc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,12 +65,12 @@ EXPOSE 8080/tcp # Set volume VOLUME [ "/ss14" ] -# Add configurations -ADD appsettings.yml /ss14-default/publish/appsettings.yml -ADD server_config.toml /ss14-default/publish/server_config.toml +# Add configurations (files go to root, not publish/) +ADD appsettings.yml /ss14-default/appsettings.yml +ADD server_config.toml /ss14-default/server_config.toml COPY start.sh /start.sh -RUN python3 /update_build_metadata.py /ss14-default/publish/server_config.toml || true && \ +RUN python3 /update_build_metadata.py /ss14-default/server_config.toml || true && \ chmod +x /start.sh # Set the entry point for the container