From dac39f3c06278f0af03998c2ea98b9c59fdcf7ba Mon Sep 17 00:00:00 2001 From: DerDavidBohl Date: Wed, 18 Jun 2025 16:14:55 +0200 Subject: [PATCH] temporary try fix --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7947217..4bbb7ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,9 @@ FROM node:24 AS frontend-build WORKDIR /app # Install dependencies -COPY frontend/package.json frontend/package-lock.json ./ +COPY frontend/package.json ./ +COPY frontend/package-lock.json ./ + RUN npm ci # Copy the rest of the frontend files