From d160e6129b76e2e9e8ff513e3345efb1704bb1ae Mon Sep 17 00:00:00 2001 From: Nicolai Date: Thu, 19 Mar 2026 10:31:03 +0100 Subject: [PATCH] commit fix --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 77656a6..87efd01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,6 @@ FROM node:20-alpine AS frontend-build WORKDIR /app/webapp/frontend COPY webapp/frontend/package.json webapp/frontend/package-lock.json ./ -# Ensure devDependencies (like Vite) are installed so the build command works RUN npm ci --include=dev COPY webapp/frontend/ ./ @@ -19,7 +18,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ WORKDIR /app - RUN apt-get update \ +RUN apt-get update \ && apt-get install -y --no-install-recommends libgomp1 \ && rm -rf /var/lib/apt/lists/*