Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Commit

Permalink
fix node ver
Browse files Browse the repository at this point in the history
  • Loading branch information
IThundxr committed May 8, 2023
1 parent 6ad77d9 commit abfc950
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:19 AS builder
FROM node:18 AS builder
WORKDIR /app
COPY package*.json ./
COPY . .
RUN yarn run build

FROM node:19
FROM node:18
WORKDIR /app
COPY package* ./
COPY --from=builder ./app/build/src ./build/src
Expand Down

0 comments on commit abfc950

Please sign in to comment.