add cheese

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-12-31 11:08:10 -08:00
parent fb31dc1521
commit b26259e206
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
2 changed files with 13 additions and 1 deletions

11
cheese/Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
cheese \
libgl1-mesa-dri \
libgl1-mesa-glx \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "cheese" ]

View File

@ -44,6 +44,7 @@ RUN mkdir -p /usr/share/icons/hicolor && \
libv4l-0 \
libxss1 \
libxtst6 \
strace \
wget \
xdg-utils \
--no-install-recommends && \
@ -55,5 +56,5 @@ RUN mkdir -p /usr/share/icons/hicolor && \
COPY local.conf /etc/fonts/local.conf
# Autorun chrome
ENTRYPOINT [ "/usr/bin/google-chrome" ]
ENTRYPOINT [ "google-chrome" ]
CMD [ "--user-data-dir=/data" ]