From 30546ddea208033111cd2a0b6c574c3e18fbb836 Mon Sep 17 00:00:00 2001 From: Andrey Arapov Date: Tue, 1 Jan 2019 17:49:53 +0100 Subject: [PATCH] add vkd3d for Direct3D 12 support libs --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index d17c4d4..118441f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,8 +41,15 @@ RUN apt-get -y install fontconfig:i386 # Enable Vulkan library. RUN apt-get -y install libvulkan1 libvulkan1:i386 vulkan-utils +# Extra RUN apt-get -y install gosu +# Install vkd3d (Direct3D 12 support) libs +RUN echo 'APT::Default-Release "bionic";' | tee /etc/apt/apt.conf.d/01lock-release && \ + echo 'deb http://archive.ubuntu.com/ubuntu/ disco main universe' | tee /etc/apt/sources.list.d/disco.list && \ + apt-get update && \ + apt-get -y -t disco install libvkd3d1 libvkd3d1:i386 + # Set locale to: en_US.UTF-8 RUN apt-get -y install locales && \ /bin/echo -e "en_US.UTF-8 UTF-8\nen_GB.UTF-8 UTF-8" | tee /etc/locale.gen && \