Do not cache angular lib builds

This commit is contained in:
Daniel 2024-04-23 10:25:36 +02:00
parent 4858d182fa
commit 0e69fefa63

View file

@ -217,9 +217,9 @@ angular-base:
COPY assets/data ./assets
IF [ "${configuration}" = "production" ]
RUN npm run build-libs
RUN --no-cache npm run build-libs
ELSE
RUN npm run build-libs:dev
RUN --no-cache npm run build-libs:dev
END
# Explicitly cache here.