This commit is contained in:
xqgex 2024-10-07 16:32:05 +02:00 committed by GitHub
commit 993e3964f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 1 deletions

View File

@ -7,7 +7,14 @@ FROM nvidia/vulkan:1.1.121-cuda-10.1--ubuntu18.04
RUN apt-key adv --fetch-keys "https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub" RUN apt-key adv --fetch-keys "https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub"
RUN packages='libsdl2-2.0 xserver-xorg libvulkan1 libomp5' && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y $packages --no-install-recommends RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends --yes \
libomp5 \
libsdl2-2.0 \
libvulkan1 \
xserver-xorg && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives
RUN useradd -m carla RUN useradd -m carla