dockerfiles/glxgears/Dockerfile
Jess Frazelle 40314b6356
change to buster slim
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-09-14 10:09:44 -04:00

21 lines
420 B
Docker

# To use:
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \
# --device /dev/dri \
# jess/glxgears
#
# Base docker image
FROM debian:buster-slim
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
# Install all the things
RUN apt-get update && apt-get install -y \
mesa-utils \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENV LIBGL_DEBUG verbose
ENTRYPOINT [ "glxgears" ]