Skip to content

Commit

Permalink
ci: Deleted the copy of the package-lock file in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
mlyubimov committed Oct 16, 2023
1 parent 5ad0c2a commit a7a93c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WORKDIR /app

RUN npm install -g @quasar/cli

COPY frontend/package.json frontend/package-lock.json ./
COPY frontend/package.json ./
RUN npm install

COPY frontend/ .
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WORKDIR /app

RUN npm install -g @quasar/cli

COPY frontend/package.json frontend/package-lock.json ./
COPY frontend/package.json ./
RUN npm install

COPY frontend/ .
Expand Down

0 comments on commit a7a93c2

Please sign in to comment.