From 9ee8c962ca31e1924561f08104a97fb307df11ff Mon Sep 17 00:00:00 2001 From: Siarhei Siniak Date: Sat, 6 Jul 2024 22:10:09 +0300 Subject: [PATCH] [~] Refactor --- docker/tiktok/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/tiktok/Dockerfile b/docker/tiktok/Dockerfile index 7a3ab37..05c6892 100644 --- a/docker/tiktok/Dockerfile +++ b/docker/tiktok/Dockerfile @@ -13,9 +13,10 @@ 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 +RUN apt-get install -yy vim +RUN apt-get install -yy tini WORKDIR /app -ENTRYPOINT ["bash", "docker/tiktok/entry.sh"] +ENTRYPOINT ["tini", "--", "bash", "docker/tiktok/entry.sh"] CMD ["zsh", "-l"]