From a520068c37f7017e14bc34ed43b1d0dd1ff1e0fe Mon Sep 17 00:00:00 2001 From: choelzl Date: Thu, 27 Oct 2022 23:10:25 +0200 Subject: [PATCH] migrate to yarn --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e39b2a..0b4ad17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ WORKDIR /usr/src/app RUN pacman -Syud --noconfirm \ base-devel git \ - nodejs npm \ + nodejs yarn \ pulseaudio \ mpv rtmpdump aria2 @@ -24,7 +24,7 @@ RUN git clone https://aur.archlinux.org/yt-dlp.git /opt/ytdl && \ USER root COPY package*.json ./ -RUN npm install +RUN yarn install COPY . . RUN chmod +x run.sh