change to ci.

light version won't copy over package-lock, so keep that npm install.
This commit is contained in:
acalcutt 2022-10-28 19:28:12 -04:00
parent 23a52b85d4
commit 12af783d5a

View file

@ -32,7 +32,7 @@ RUN set -ex; \
RUN mkdir -p /usr/src/app
COPY package* /usr/src/app/
RUN cd /usr/src/app && npm install --omit=dev
RUN cd /usr/src/app && npm ci --omit=dev
FROM ubuntu:focal AS final