From 8f6bc9747aa9fe5b49ba16e55d08952b515ff4a2 Mon Sep 17 00:00:00 2001 From: Evil0ctal Date: Thu, 9 Mar 2023 01:15:11 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20Add=20NodeJS=20for=20Docker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 523b7a6..a346da2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,11 @@ - +# Credits +# https://github.com/jw-star FROM python:3.10.5-slim-buster -MAINTAINER jwstar (https://hub.docker.com/repository/docker/jwstar/douyin_tiktok_download_api) -RUN apt-get update && apt-get -y install gcc && apt-get -y install nodejs +MAINTAINER evil0ctal (https://hub.docker.com/repository/docker/evil0ctal/douyin_tiktok_download_api/general) +RUN apt-get update +RUN apt-get -y install gcc +RUN apt-get -y install nodejs +RUN npm install -y md5 COPY . /app RUN pip3 --no-cache-dir install --user -r /app/requirements.txt WORKDIR /app