From 1dd7cd93840032425a0186ede61359df371e6f3f Mon Sep 17 00:00:00 2001 From: ddsardella Date: Sat, 18 May 2024 10:21:40 +1000 Subject: [PATCH] Update Dockerfile for missing pam dev lib (#8078) After failing to build with this due to the missing pam development library package I have added it to the DockerFile for the build image --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 3aa093e01..8544219c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,7 @@ RUN apt update -y && \ libxcb-shape0-dev \ libxcb-xfixes0-dev \ libasound2-dev \ + libpam0g-dev \ libpulse-dev \ make \ cmake \