From 7f7036528b57393f95f8f4178a6569d0baeac19c Mon Sep 17 00:00:00 2001 From: Evil0ctal Date: Wed, 8 Mar 2023 22:54:09 -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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6de878b..523b7a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ 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 +RUN apt-get update && apt-get -y install gcc && apt-get -y install nodejs COPY . /app RUN pip3 --no-cache-dir install --user -r /app/requirements.txt WORKDIR /app @@ -9,4 +9,4 @@ WORKDIR /app RUN chmod +x start.sh -CMD ["./start.sh"] \ No newline at end of file +CMD ["./start.sh"]