mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-11 07:22:40 +01:00
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" ]
|
||||||
Reference in New Issue
Block a user