migrate to yarn
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
choelzl 2022-10-27 23:10:25 +02:00
parent ea3f4959ae
commit a520068c37
Signed by: sora
GPG Key ID: A362EA0491E2EEA0

View File

@ -13,7 +13,7 @@ WORKDIR /usr/src/app
RUN pacman -Syud --noconfirm \ RUN pacman -Syud --noconfirm \
base-devel git \ base-devel git \
nodejs npm \ nodejs yarn \
pulseaudio \ pulseaudio \
mpv rtmpdump aria2 mpv rtmpdump aria2
@ -24,7 +24,7 @@ RUN git clone https://aur.archlinux.org/yt-dlp.git /opt/ytdl && \
USER root USER root
COPY package*.json ./ COPY package*.json ./
RUN npm install RUN yarn install
COPY . . COPY . .
RUN chmod +x run.sh RUN chmod +x run.sh