diff --git a/Dockerfile b/Dockerfile index 74c85e2..a3e5ed6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.11 WORKDIR /app -RUN apt-get update && apt-get install -y ffmpeg +RUN apt-get update && apt-get install -y ffmpeg curl COPY requirements.txt . @@ -11,6 +11,9 @@ RUN pip install -r requirements.txt RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ && apt-get install -y nodejs +RUN curl -fsSL https://deno.land/install.sh | sh \ + && mv /root/.deno/bin/deno /usr/local/bin/deno + COPY app ./app RUN mkdir downloads