FIX: Missing npm install before build:release

This commit is contained in:
Tarod BOFH 2024-04-27 15:51:38 +02:00
parent c5adfe80bc
commit 0fcd3e037e
Signed by untrusted user: Cbr
GPG Key ID: 6861832A1DABEE21

View File

@ -15,6 +15,7 @@ RUN apk add git git-lfs
COPY --from=fetch /repo .
WORKDIR /app/project
RUN npm install -g npm@10.5.1
RUN npm install
RUN npm run build:release
FROM alpine as base