install yarn
Some checks failed
Main / build-and-push-docker-image (20.x) (push) Failing after 3m4s

This commit is contained in:
2025-12-05 22:17:22 -05:00
parent 8f2a3d4051
commit 00871ea467

View File

@@ -2,7 +2,8 @@
FROM alpine:latest AS builder FROM alpine:latest AS builder
# Install node and yarn # Install node and yarn
RUN apk add --no-cache nodejs yarn RUN apk add --no-cache nodejs npm
RUN npm install -g yarn
WORKDIR /app WORKDIR /app