diff --git a/CHANGELOG.md b/CHANGELOG.md index 463b31bf..3150b762 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [2.42.4](https://github.com/filebrowser/filebrowser/compare/v2.42.3...v2.42.4) (2025-08-16) + + +### Bug Fixes + +* add libcap to Dockerfile.s6 ([342b239](https://github.com/filebrowser/filebrowser/commit/342b239ac6f4af2453d5f7aa27f7f0093024dd72)) + ### [2.42.3](https://github.com/filebrowser/filebrowser/compare/v2.42.2...v2.42.3) (2025-08-09) diff --git a/Dockerfile.s6 b/Dockerfile.s6 index 7e281ad7..2a1218b2 100644 --- a/Dockerfile.s6 +++ b/Dockerfile.s6 @@ -1,7 +1,7 @@ FROM ghcr.io/linuxserver/baseimage-alpine:3.22 RUN apk update && \ - apk --no-cache add ca-certificates mailcap jq + apk --no-cache add ca-certificates mailcap jq libcap # Make user and create necessary directories RUN mkdir -p /config /database /srv && \ @@ -12,7 +12,8 @@ COPY filebrowser /bin/filebrowser COPY docker/common/ / COPY docker/s6/ / -RUN chown -R abc:abc /bin/filebrowser /defaults healthcheck.sh +RUN chown -R abc:abc /bin/filebrowser /defaults healthcheck.sh && \ + setcap 'cap_net_bind_service=+ep' /bin/filebrowser # Define healthcheck script HEALTHCHECK --start-period=2s --interval=5s --timeout=3s CMD /healthcheck.sh