Skip to content

Commit

Permalink
Add libcap-dev dependency to Dockerfiles
Browse files Browse the repository at this point in the history
This is required for user and capability support in everest-framework >= 0.9.0

Signed-off-by: Kai-Uwe Hermann <kai-uwe.hermann@pionix.de>
  • Loading branch information
hikinggrass committed Dec 26, 2023
1 parent 306b8be commit 3d44ee4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions docker/images/build-kit/alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@ RUN apk add --no-cache \
maven \
# required by pybind11
python3-dev \
# required for certificate generation
openssl
# required for certificate generation
openssl \
# required for user and capability support in everest-framework >= 0.9.0
libcap-dev

RUN python3 -m pip install \
environs>=9.5.0 \
Expand Down
4 changes: 3 additions & 1 deletion docker/images/build-kit/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ RUN apt-get install --no-install-recommends -y \
pkg-config \
libpcap-dev \
# required by RiseV2G
maven
maven \
# required for user and capability support in everest-framework >= 0.9.0
libcap-dev

# clean up apt
RUN apt-get clean \
Expand Down

0 comments on commit 3d44ee4

Please sign in to comment.