fix consecutive runs
This commit is contained in:
parent
93344376b7
commit
3138f2dafb
1 changed files with 2 additions and 2 deletions
|
@ -47,8 +47,8 @@ WORKDIR /usr/src/app
|
|||
COPY package.json /usr/src/app
|
||||
COPY package-lock.json /usr/src/app
|
||||
|
||||
RUN npm ci --omit=dev
|
||||
RUN chown -R root:root /usr/src/app
|
||||
RUN npm ci --omit=dev; \
|
||||
chown -R root:root /usr/src/app;
|
||||
|
||||
FROM ubuntu:focal AS final
|
||||
|
||||
|
|
Loading…
Reference in a new issue