From ed492e54c962e382ce96f045503d5989d4a8c99d Mon Sep 17 00:00:00 2001 From: Tzahi12345 Date: Sat, 15 Apr 2023 16:45:32 -0400 Subject: [PATCH] Fixed pycryptodomex build error Changed tcd package to fix broken twitch downloads (#859) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b390d19..39dbffe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,10 +52,10 @@ RUN npm config set strict-ssl false && \ FROM base RUN npm install -g pm2 && \ apt update && \ - apt install -y --no-install-recommends gosu python3-minimal python-is-python3 python3-pip atomicparsley && \ + apt install -y --no-install-recommends gosu python3-minimal python-is-python3 python3-pip atomicparsley build-essential && \ apt clean && \ rm -rf /var/lib/apt/lists/* -RUN pip install tcd pycryptodomex +RUN pip install tdh-tcd pycryptodomex WORKDIR /app # User 1000 already exist from base image COPY --chown=$UID:$GID --from=ffmpeg [ "/usr/local/bin/ffmpeg", "/usr/local/bin/ffmpeg" ]