Add cache clean

This commit is contained in:
DerDavidBohl
2025-06-18 16:43:55 +02:00
parent c1bfa4e319
commit e26045baef

View File

@@ -9,7 +9,7 @@ FROM node:alpine AS frontend-build
WORKDIR /app
COPY frontend .
RUN rm -rf package-lock.json
RUN npm cache clean
RUN npm cache clean --force
RUN npm install
RUN npm run build