From aafbc88a3893cc009f90f29ab3a1ba3dfb3c4ec2 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 18 Dec 2025 15:03:02 +0100 Subject: [PATCH] Update Dockerfile to set ownership on rootfs copy Change ownership of copied files to user with ID 212. --- netalertx/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netalertx/Dockerfile b/netalertx/Dockerfile index 2fc5c962f..62768b4a8 100644 --- a/netalertx/Dockerfile +++ b/netalertx/Dockerfile @@ -30,7 +30,7 @@ ENV READ_WRITE_FOLDERS="$READ_WRITE_FOLDERS $NETALERTX_DATA" ################## # Add rootfs -COPY rootfs/ / +COPY --chown=212:212 rootfs/ / RUN BASHIO_VERSION="0.14.3" && \ mkdir -p /tmp/bashio && \ curl -f -L -s -S "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz" | tar -xzf - --strip 1 -C /tmp/bashio && \