From b83e30e5b58d5739b539662d17f928ad00ed310d Mon Sep 17 00:00:00 2001 From: Klagarge Date: Tue, 20 May 2025 11:27:12 +0200 Subject: [PATCH] fix(web-app): path to copy on docker image Because the Fribourg GitLab need a relative path from the root of the project and not from the Dockerfile... Is it possible to see one time a correct installation of GitLab somewhere?! Signed-off-by: Klagarge --- web-app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-app/Dockerfile b/web-app/Dockerfile index 5be8d06..0d6b2c3 100644 --- a/web-app/Dockerfile +++ b/web-app/Dockerfile @@ -2,7 +2,7 @@ FROM node:22.15-slim WORKDIR /app -COPY . . +COPY ./web-app . RUN npm install