refactor: Use patch-package to patch ytdl-core (#1006)

This commit is contained in:
Matt Foxx 2024-03-18 23:30:35 -04:00 committed by GitHub
parent bd446a3aeb
commit 845899e96d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 1030 additions and 640 deletions

View file

@ -9,7 +9,6 @@ RUN apt-get update \
tini \
openssl \
ca-certificates \
git \
&& apt-get autoclean \
&& apt-get autoremove \
&& rm -rf /var/lib/apt/lists/*
@ -20,6 +19,7 @@ FROM base AS dependencies
WORKDIR /usr/app
COPY package.json .
COPY patches ./patches
COPY yarn.lock .
RUN yarn install --prod