From f478e1ff40b2569638d4e07507cdfdce0ae4d6f3 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 28 Nov 2021 22:39:45 +0100 Subject: [PATCH] Added libcap-dev to build requirements for Ubuntu Docker images --- platypush/platydock/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platypush/platydock/__init__.py b/platypush/platydock/__init__.py index a2597603..a7585fe7 100755 --- a/platypush/platydock/__init__.py +++ b/platypush/platydock/__init__.py @@ -139,6 +139,7 @@ RUN dpkg --configure -a \\ && apt-get install --no-install-recommends -y git \\ && apt-get install --no-install-recommends -y sudo \\ && apt-get install --no-install-recommends -y libffi-dev \\ + && apt-get install --no-install-recommends -y libcap-dev \\ && apt-get install --no-install-recommends -y libjpeg-dev \\{pkg_cmd}{pip_cmd}''' for exec_cmd in exec_cmds: @@ -154,6 +155,7 @@ RUN apt-get remove -y git \\ && apt-get remove -y build-essential \\ && apt-get remove -y libffi-dev \\ && apt-get remove -y libjpeg-dev \\ + && apt-get remove -y libcap-dev \\ && apt-get remove -y zlib1g-dev \\ && apt-get remove -y apt-utils \\ && apt-get clean \\