From ccd6db5773b9f6f6b703029677bf1f0542d2bbbf Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 27 Mar 2024 15:09:38 +0000 Subject: [PATCH] add tmux to Dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3a3eab14..a30703ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,10 @@ COPY . . #jaxmarl from source if needed, all the requirements RUN pip install -e . +# install tmux +RUN apt-get update && \ + apt-get install -y tmux + #disabling preallocation RUN export XLA_PYTHON_CLIENT_PREALLOCATE=false #safety measures