From d7c0758d550b2ec84c214df55411138dc5739652 Mon Sep 17 00:00:00 2001 From: doomtube Date: Tue, 6 Jan 2026 01:45:53 -0500 Subject: [PATCH] Use config.json.example for Docker build --- backend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 20a9c02..e479d43 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -83,8 +83,8 @@ RUN cd build && \ -DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE && \ cmake --build . -j$(nproc) -# Copy config -COPY config.json . +# Copy config template (real config mounted at runtime via docker-compose) +COPY config.json.example config.json # Create uploads directory with proper permissions # Using nobody user's UID/GID (65534) for consistency with nginx