Skip to content

Commit

Permalink
Enable corepack
Browse files Browse the repository at this point in the history
  • Loading branch information
MOZGIII committed Jul 17, 2024
1 parent 54998a5 commit 2d65490
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
FROM node:20 AS builder
FROM node:20 AS base

RUN corepack enable

FROM base AS builder

WORKDIR /src

Expand All @@ -10,7 +14,7 @@ RUN yarn install
COPY . .
RUN yarn build

FROM node:20
FROM base

WORKDIR /app

Expand Down

0 comments on commit 2d65490

Please sign in to comment.