mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-17 09:37:49 +01:00
10 lines
183 B
Docker
10 lines
183 B
Docker
FROM ubuntu:14.10
|
|
MAINTAINER Justin Garrison <justinleegarrison@gmail.com>
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
tmux \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENTRYPOINT ["tmux"]
|
|
|