commit fix

This commit is contained in:
Nicolai 2026-03-19 10:31:03 +01:00
parent e1a1347803
commit d160e6129b

View File

@ -3,7 +3,6 @@ FROM node:20-alpine AS frontend-build
WORKDIR /app/webapp/frontend WORKDIR /app/webapp/frontend
COPY webapp/frontend/package.json webapp/frontend/package-lock.json ./ 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 RUN npm ci --include=dev
COPY webapp/frontend/ ./ COPY webapp/frontend/ ./
@ -19,7 +18,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
WORKDIR /app WORKDIR /app
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends libgomp1 \ && apt-get install -y --no-install-recommends libgomp1 \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*