include dev dependencies in build phase

This commit is contained in:
Ulf Gebhardt 2024-02-26 00:56:40 +01:00
parent 5083d91b91
commit d771eeb516
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -86,7 +86,7 @@ FROM base as build
# Copy everything
COPY . .
# npm install
RUN npm install --frozen-lockfile --non-interactive
RUN npm install --include=dev --frozen-lockfile --non-interactive
# npm build
RUN npm run build