Skip to content

Commit

Permalink
Need yarn.lock for Docker build.
Browse files Browse the repository at this point in the history
  • Loading branch information
snoopdave committed Nov 4, 2023
1 parent abb0fab commit 2811461
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM node:18

WORKDIR /app
COPY package.json .
COPY yarn.lock .
RUN yarn install
RUN mkdir src
COPY src ./src/
Expand Down
1 change: 1 addition & 0 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ FROM node:18

WORKDIR /app
COPY package.json .
COPY yarn.lock .
RUN yarn install
RUN mkdir src
COPY src ./src/
Expand Down

0 comments on commit 2811461

Please sign in to comment.