From 1fa8bdec1d745b9ef1b3f6c365b2add5c4466316 Mon Sep 17 00:00:00 2001 From: YuanHui <31339626+alsesa@users.noreply.github.com> Date: Tue, 2 Dec 2025 13:11:48 +0800 Subject: [PATCH] fix docker build problem --- web/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/Dockerfile b/web/Dockerfile index 9480929..f100fa3 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -21,8 +21,8 @@ COPY *.html . COPY *.css . COPY *.js . COPY *.json . -COPY *.png . 2>/dev/null || true -COPY *.svg . 2>/dev/null || true +COPY *.png . +COPY *.svg . # Create non-root user for security RUN useradd -m -u 1000 appuser && \