diff --git a/bugulma/frontend/Dockerfile b/bugulma/frontend/Dockerfile index b00fb11..4bef309 100644 --- a/bugulma/frontend/Dockerfile +++ b/bugulma/frontend/Dockerfile @@ -4,6 +4,9 @@ FROM node:18-alpine AS builder # Set working directory WORKDIR /app +# Enable corepack and set yarn version +RUN corepack enable && corepack prepare yarn@4.12.0 --activate + # Copy package files COPY package*.json yarn.lock ./