fix(worker): use npm install instead of npm ci — no package-lock.json present
This commit is contained in:
parent
cc8ee63639
commit
629022ab5f
1 changed files with 1 additions and 1 deletions
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue