mirror of
https://github.com/imgyh/tiktok.git
synced 2025-04-06 04:15:52 +08:00
14 lines
245 B
Docker
14 lines
245 B
Docker
# This Dockerfile is used to build an Python environment
|
|
FROM python:3.9-slim-bullseye
|
|
|
|
LABEL maintainer="imgyh<admin@imgyh.com>"
|
|
|
|
WORKDIR /app
|
|
|
|
ADD . $WORKDIR
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
CMD ["python3", "TikTokWeb.py"]
|
|
|