From 48edc5d6da827eabf78908e823e2cf566efb9a2a Mon Sep 17 00:00:00 2001 From: Per Ryan Edin Date: Sat, 18 Jul 2026 10:47:22 +0200 Subject: [PATCH] Fix incorrect yarn installation --- alpine-nodejs-minio/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/alpine-nodejs-minio/Dockerfile b/alpine-nodejs-minio/Dockerfile index 31cb232..5e96144 100644 --- a/alpine-nodejs-minio/Dockerfile +++ b/alpine-nodejs-minio/Dockerfile @@ -2,8 +2,6 @@ FROM alpine:latest LABEL maintainer="Per Ryan Edin " RUN apk update -RUN apk add minio-client nodejs git - -RUN npm i -g yarn +RUN apk add minio-client nodejs git yarn WORKDIR /work