mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
12 lines
241 B
Docker
12 lines
241 B
Docker
|
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" ]
|