mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
add hollywood
Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
parent
4e8847d47e
commit
261d81ccfd
22
hollywood/Dockerfile
Normal file
22
hollywood/Dockerfile
Normal 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" ]
|
Loading…
Reference in New Issue
Block a user