From b86cf8bcce157d898ce6693406092f1d38df5c78 Mon Sep 17 00:00:00 2001 From: lklynet Date: Mon, 12 Jan 2026 10:18:37 -0500 Subject: [PATCH] fix: correct file path for hypernode.svg in Dockerfile The hypernode.svg file was being copied to the wrong location. Update the COPY command to place it in the public directory where it belongs. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1ef67a0..279f11d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY package*.json ./ RUN npm ci --omit=dev COPY public/ ./public/ -COPY server.js hypermind2.svg LICENSE ./ +COPY server.js ./public/hypernode.svg LICENSE ./ COPY src/ ./src/ ENV PORT=3000