From 6e51ee60642e4a5ed7c21eaba65e49e37908753d Mon Sep 17 00:00:00 2001 From: Andrey Arapov Date: Fri, 29 Apr 2016 22:02:55 +0200 Subject: [PATCH] add libgcrypt11 --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index a5db7df..12466b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -78,6 +78,13 @@ RUN ln -sv libudev.so.1 /lib/i386-linux-gnu/libudev.so.0 # causing sound to stop working RUN echo "enable-shm = no" >> /etc/pulse/client.conf +# Workaround: Ubuntu 16.04 doesn't have libgcrypt11, so we take it from trusty +# Required by Half-Life based games +ADD http://archive.ubuntu.com/ubuntu/pool/main/libg/libgcrypt11/libgcrypt11_1.5.3-2ubuntu4_i386.deb /tmp/libgcrypt11.deb +RUN cd /tmp && \ + dpkg -i libgcrypt11.deb && \ + rm -f libgcrypt11.deb + # Create a user ENV USER user ENV UID 1000