From 12d9c469b211d81a9c6efcef025e79bdeae42015 Mon Sep 17 00:00:00 2001 From: Peter Upfold Date: Mon, 13 Apr 2026 18:19:23 +0100 Subject: [PATCH] Add Deno to Dockerfile --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c2ffe35..a56ac08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ ARG TARGETARCH # Installing system dependencies RUN apt-get update && \ - apt-get install -y --no-install-recommends gcc ffmpeg fonts-noto exiftool python3-tk + apt-get install -y --no-install-recommends gcc ffmpeg fonts-noto exiftool python3-tk curl unzip # Poetry and runtime FROM base AS runtime @@ -27,6 +27,9 @@ RUN python3 -m venv /poetry-venv && \ /poetry-venv/bin/python -m pip install --upgrade pip && \ /poetry-venv/bin/python -m pip install "poetry>=2.0.0,<3.0.0" +# Add Deno for solving YT JS challenges +RUN curl -fsSL https://deno.land/install.sh | DENO_INSTALL=/usr sh + WORKDIR /app