From 0ccf6de89698d529b23a28c3d1df13b18ebbc4f7 Mon Sep 17 00:00:00 2001 From: SysAdmin Date: Sun, 19 Oct 2025 21:52:21 +0100 Subject: [PATCH] fix: Include SDK directory in Docker image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SDK directory was not being copied to the Docker image, causing 404 errors when accessing /sdk. Added COPY statement to include the entire sdk/ directory with its subdirectories and downloadable templates. Also added logo.jpg to the copy list for completeness. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9f31396..0312d46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,10 @@ COPY index.html /usr/share/nginx/html/ COPY styles.css /usr/share/nginx/html/ COPY script.js /usr/share/nginx/html/ COPY logo.png /usr/share/nginx/html/ +COPY logo.jpg /usr/share/nginx/html/ + +# Copy SDK directory with templates +COPY sdk/ /usr/share/nginx/html/sdk/ # Copy custom nginx configuration COPY nginx-site.conf /etc/nginx/conf.d/default.conf