From 75001e10e74206102e6ca244b87340d8057af81f Mon Sep 17 00:00:00 2001 From: Jose Luis Date: Fri, 20 Mar 2026 16:10:58 +0100 Subject: [PATCH] fix: add assets/ directory to Docker image The game PNG assets (maps, characters, NPCs) were not being copied into the nginx container, causing 404s in production. Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5b93eb0..070a9fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,4 +2,5 @@ FROM nginx:alpine COPY index.html /usr/share/nginx/html/ COPY css/ /usr/share/nginx/html/css/ COPY js/ /usr/share/nginx/html/js/ +COPY assets/ /usr/share/nginx/html/assets/ EXPOSE 80