From 4d414f02fa05307ae1246fc61ecab7990ecc3585 Mon Sep 17 00:00:00 2001 From: Justin Garrison Date: Wed, 28 Jan 2015 23:50:47 -0800 Subject: [PATCH] =?UTF-8?q?added=20a=20stupid=20tmux=20container=20=C2=AF\?= =?UTF-8?q?=5F(=E3=83=84)=5F/=C2=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tmux/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tmux/Dockerfile diff --git a/tmux/Dockerfile b/tmux/Dockerfile new file mode 100644 index 0000000..55cb3f5 --- /dev/null +++ b/tmux/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:14.10 +MAINTAINER Justin Garrison + +RUN apt-get update && apt-get install -y \ + tmux \ + && rm -rf /var/lib/apt/lists/* + +ENTRYPOINT ["tmux"] +