9 lines
169 B
Docker
9 lines
169 B
Docker
FROM python:latest
|
|
|
|
RUN pip3 install ipython jupyter
|
|
RUN apt-get update -yy && apt-get install -yy zsh htop mc git
|
|
|
|
WORKDIR /app
|
|
|
|
CMD ["bash", "docker/tiktok/entry.sh"]
|