From 25fba1c724e08a87def71501475f490136556131 Mon Sep 17 00:00:00 2001 From: Houmgaor Date: Tue, 17 Feb 2026 00:34:15 +0100 Subject: [PATCH] fix: remove untracked www/ from Dockerfile COPY www/ only contains gitignored content (www/jp/) so it doesn't exist in the CI checkout, causing the Docker build to fail. --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c5c8c4209..6aa0185c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,10 +16,9 @@ RUN adduser -D -h /app erupe WORKDIR /app COPY --from=builder /build/erupe-ce . -COPY --from=builder /build/www/ ./www/ COPY --from=builder /build/schemas/ ./schemas/ -# bundled-schema/ is optional demo data, copy if present -RUN mkdir -p bundled-schema + +# www/ and bin/ are mounted at runtime if needed # bin/ and savedata/ are mounted at runtime via docker-compose # config.json is also mounted at runtime