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/*