diff --git a/client/Dockerfile b/client/Dockerfile index 0a3d9d7..6ad37ff 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -2,9 +2,12 @@ FROM node:lts-alpine AS builder WORKDIR /app +RUN corepack enable +RUN yarn set version latest + COPY package.json yarn.lock ./ -RUN yarn install --frozen-lockfile +RUN yarn install COPY . . RUN yarn build