Skip to content
This repository has been archived by the owner on Dec 22, 2022. It is now read-only.

Commit

Permalink
Merge pull request #124 from CPCTF2022/fix-server
Browse files Browse the repository at this point in the history
⚡  use npm ci
  • Loading branch information
hijiki51 authored Apr 28, 2022
2 parents 5a9b964 + c3df23c commit 2fd6f7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app/client

COPY . /app/client/

RUN npm install
RUN npm ci
RUN npm run build

FROM busybox:1
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY . /app/client/

WORKDIR /app/client/server

RUN npm install
RUN npm ci
RUN npm run build

FROM busybox:1
Expand Down

0 comments on commit 2fd6f7f

Please sign in to comment.