fix: use npm install instead of npm ci in Dockerfile (no lockfile)
Some checks are pending
CI / build-check-test (push) Waiting to run

This commit is contained in:
JAE 2026-03-27 03:01:56 +00:00
parent 00e9816e57
commit bdd881e80c

View file

@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci --production RUN npm install --omit=dev
RUN npx playwright install chromium RUN npx playwright install chromium