fix(worker): use npm install instead of npm ci — no package-lock.json present

This commit is contained in:
Zac Gaetano 2026-05-20 23:29:15 -04:00
parent cc8ee63639
commit 629022ab5f

View file

@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
RUN npm install --omit=dev
COPY src ./src
CMD ["node", "src/index.js"]