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"]