Skip to content

Commit

Permalink
Merge pull request #86 from kevkevinpal/releaseFix
Browse files Browse the repository at this point in the history
added yarn.lock to install proccess
  • Loading branch information
kevkevinpal authored Jan 30, 2024
2 parents 09994a9 + 291908d commit 08fdc30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ FROM node:16 as build
# Create app directory
WORKDIR /usr/src/app

COPY package*.json ./
COPY package.json ./
COPY yarn.lock ./
RUN yarn install

COPY . .
Expand Down

0 comments on commit 08fdc30

Please sign in to comment.