10 lines
194 B
Docker
10 lines
194 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
|
|
|
|
ENTRYPOINT ["bash", "docker/tiktok/entry.sh"]
|
|
CMD ["zsh", "-l"]
|