How to run OpenCL + OpenGL inside a Docker container?
问题 The aim is to run an OpenCL/OpenGL (interop) app inside a docker container. But I have not been successful yet. Intro I have laptop with an NVidia graphics card so I thought leveraging on NVidia Dockerfiles [1,2] would be a good starting point. The following Dockerfile: # Dockerfile to run OpenGL app FROM nvidia/opengl:1.0-glvnd-runtime-ubuntu16.04 ENV NVIDIA_DRIVER_CAPABILITIES ${NVIDIA_DRIVER_CAPABILITIES},display RUN apt-get update && apt-get install -y --no-install-recommends \ mesa-utils