Run web build script manually

This commit is contained in:
Bill Thornton 2023-03-10 12:24:43 -05:00
parent ce06fc3c28
commit c50bc44c3b
4 changed files with 6 additions and 1 deletions

View file

@ -8,4 +8,6 @@ RUN apk add autoconf g++ make libpng-dev gifsicle alpine-sdk automake libtool ma
WORKDIR ${SOURCE_DIR}
COPY . .
RUN npm ci --no-audit --unsafe-perm && mv dist ${ARTIFACT_DIR}
RUN npm ci --no-audit --unsafe-perm \
&& npm run build:production \
&& mv dist ${ARTIFACT_DIR}