Skip to content

Commit

Permalink
fix consecutive runs
Browse files Browse the repository at this point in the history
  • Loading branch information
acalcutt committed Feb 21, 2023
1 parent 9334437 commit 3138f2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3138f2d

Please sign in to comment.