From 1ef56da99bac32c764250611e518634ba1b7c59c Mon Sep 17 00:00:00 2001 From: imgyh <1974355683@qq.com> Date: Sun, 16 Apr 2023 19:00:30 +0800 Subject: [PATCH] =?UTF-8?q?build(dockerfile):=20=E5=A2=9E=E5=8A=A0node?= =?UTF-8?q?=E7=8E=AF=E5=A2=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4f6e70b..1bf3af9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # This Dockerfile is used to build an Python environment -FROM python:3.9-slim-bullseye +FROM node:18-bullseye-slim LABEL maintainer="imgyh" @@ -7,7 +7,13 @@ WORKDIR /app ADD . $WORKDIR +RUN sed -i s/deb.debian.org/mirrors.aliyun.com/g /etc/apt/sources.list + +RUN apt-get update && apt-get install -y python3.9 python3-pip + RUN pip3 install -r requirements.txt +ENV TZ=Asia/Shanghai + CMD ["python3", "TikTokWeb.py"]