add hollywood

Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
Jessica Frazelle 2015-06-11 11:28:46 -07:00
parent 4188ae1876
commit 24835c4222
1 changed files with 22 additions and 0 deletions

22
hollywood/Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM ubuntu:14.04
MAINTAINER Jessie Frazelle <jess@linux.com>
RUN apt-get update && apt-get install -y \
software-properties-common \
--no-install-recommends && \
add-apt-repository ppa:hollywood/ppa && \
apt-get update && \
apt-get install -y \
byobu \
hollywood \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENV HOME /home/user
RUN useradd --create-home --home-dir $HOME user \
&& chown -R user:user $HOME
WORKDIR $HOME
USER user
CMD [ "hollywood" ]