fix yarn
Some checks are pending
Main / build-and-push-docker-image (20.x) (push) Waiting to run

This commit is contained in:
2025-12-05 22:31:19 -05:00
parent 30389ff5ff
commit 5bf5d1d656

View File

@@ -3,11 +3,13 @@ FROM node:20-alpine AS builder
# Install node and yarn
RUN apk add --no-cache nodejs npm
RUN npm install -g yarn
# Enable Corepack
RUN corepack enable
# Install latest yarn
RUN corepack prepare yarn@stable --activate
WORKDIR /app
COPY package.json yarn.lock ./