From: Olliver Schinagl Date: Mon, 3 Jun 2024 14:09:17 +0000 (+0200) Subject: Docker/Alpine: Remove USB group X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5432361184cc4afa585bf31914e58c0a0eee66ee;p=thirdparty%2Ftvheadend.git Docker/Alpine: Remove USB group The USB group has been removed from upstream alpine in commit bb00d0e4f345 ("main/alpine-baselayout: remove mem and usb group") which was a fixup on commit f16d0754d601 ("main/alpine-baselayout: remove unused/moved users and groups") Lets remove it here as well as we cannot join the group any longer. Besides, device access is probably better managed with host specific udev rules. Signed-off-by: Olliver Schinagl --- diff --git a/Containerfile.alpine b/Containerfile.alpine index 0d501df9d..a49177edc 100644 --- a/Containerfile.alpine +++ b/Containerfile.alpine @@ -116,7 +116,6 @@ RUN apk add --no-cache \ addgroup -S 'tvheadend' && \ adduser -D -G 'tvheadend' -h '/var/lib/tvheadend' -s '/bin/nologin' -S 'tvheadend' && \ adduser 'tvheadend' 'audio' && \ - adduser 'tvheadend' 'usb' && \ adduser 'tvheadend' 'video' && \ install -d -m 775 -g 'tvheadend' -o 'tvheadend' '/var/lib/tvheadend/recordings' && \ install -d -m 775 -g 'tvheadend' -o 'tvheadend' '/var/log/tvheadend'