From 4274c1d6aee5aa9435fd9a79eea8e46c8f975b62 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Thu, 6 Jul 2023 17:27:31 +0200 Subject: [PATCH] Add tmux to dockerfile so it can run in the container on non-linux systems --- docker/test.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/test.Dockerfile b/docker/test.Dockerfile index 1bec4da..af7fd3c 100644 --- a/docker/test.Dockerfile +++ b/docker/test.Dockerfile @@ -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", "--"]