containers/linuxserver-deluge/Dockerfile

6 lines
221 B
Docker

FROM linuxserver/deluge:2.1.1
# Add setcap permission to Python binary (so that it can run deluge on port 80)
RUN apk add --no-cache libcap-utils \
&& setcap cap_net_bind_service=+ep $(realpath /usr/bin/python3)