Add tmux to dockerfile so it can run in the container on non-linux systems

This commit is contained in:
Kuba Orlik 2023-07-06 17:27:31 +02:00
parent 75958bdd33
commit 4274c1d6ae

View File

@ -8,6 +8,7 @@ ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN apt update
RUN apt install -y git
RUN apt install -y tmux
RUN chmod +x /tini
ENTRYPOINT ["/tini", "--"]