22 lines
624 B
Docker
22 lines
624 B
Docker
FROM python:latest
|
|
|
|
RUN pip3 install ipython jupyter
|
|
RUN apt-get update -yy && apt-get install -yy zsh htop mc git
|
|
RUN pip3 install jupyterlab-vim
|
|
RUN pip3 install pyktok yt-dlp playwright==1.44.0 TikTokApi
|
|
RUN pip3 install numpy pandas browser_cookie3 ipdb asgiref
|
|
RUN python3 -m playwright install-deps
|
|
RUN python3 -m playwright install
|
|
RUN pip3 install tqdm
|
|
RUN apt-get install -yy ffmpeg
|
|
RUN pip3 install celery redis
|
|
RUN pip3 install dataclasses-json
|
|
RUN pip3 install rpdb
|
|
RUN apt-get install -yy netcat-traditional
|
|
RUN apt-get install vim
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["bash", "docker/tiktok/entry.sh"]
|
|
CMD ["zsh", "-l"]
|