From e6ec105d11fa1e5e650ee473fe7196530957ed0e Mon Sep 17 00:00:00 2001 From: bcarlin Date: Sun, 5 Jan 2025 19:30:54 +0100 Subject: [PATCH] fix: add yarn to the image --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b30279d..11d8acc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,10 @@ RUN apt-get update \ && apt-get install --no-install-recommends --yes \ fontconfig \ chromium-browser \ - nodejs \ + nodejs yarnpkg \ git \ - && rm -rf /var/lib/apt/lists/* + && rm -rf /var/lib/apt/lists/* \ + && ln -s /usr/bin/yarnpkg /usr/bin/yarn + +