Skip to content

Commit

Permalink
fix: fix build error in Dockerfile.for-ci
Browse files Browse the repository at this point in the history
Signed-off-by: vikastc <[email protected]>
  • Loading branch information
Vikastc committed Feb 14, 2024
1 parent eb5e0c0 commit b58507d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.for-ci
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM node:18.5-slim as builder
FROM node:20.1-slim as builder

WORKDIR /app

COPY package.json yarn.lock /app/
RUN npm ci
RUN yarn

COPY . .
RUN npm run build
RUN yarn build

0 comments on commit b58507d

Please sign in to comment.