From 50f747d1e0c3a6f639df90c5790e02940b26ae3d Mon Sep 17 00:00:00 2001 From: Hitonabi Date: Tue, 21 Jul 2026 17:33:57 +0200 Subject: [PATCH] =?UTF-8?q?Dockerfiles:=20Korrektur=20f=C3=BCr=20Arcane=20?= =?UTF-8?q?Build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/ui/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/ui/Dockerfile b/docker/ui/Dockerfile index f6efb23..21c1e29 100644 --- a/docker/ui/Dockerfile +++ b/docker/ui/Dockerfile @@ -4,10 +4,10 @@ WORKDIR /app RUN apk add --no-cache curl -COPY package.json package-lock.json* ./ +COPY docker/ui/package.json docker/ui/package-lock.json* ./ RUN npm ci 2>/dev/null || npm install -COPY . . +COPY docker/ui/ . EXPOSE 80