From 9e530cafd5e229ed8e2b32f0e94ebf24b4227ff2 Mon Sep 17 00:00:00 2001 From: TrueCharts-Admin Date: Fri, 20 Feb 2026 03:08:03 +0000 Subject: [PATCH 1/2] =?UTF-8?q?fix(deps):=20update=20catalinii/minisatip?= =?UTF-8?q?=20v2.0.71=20=E2=86=92=20v2.0.72?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/minisatip/docker-bake.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/minisatip/docker-bake.hcl b/apps/minisatip/docker-bake.hcl index 269b41a34..7bdadd165 100644 --- a/apps/minisatip/docker-bake.hcl +++ b/apps/minisatip/docker-bake.hcl @@ -6,7 +6,7 @@ variable "APP" { variable "VERSION" { // renovate: datasource=github-releases depName=catalinii/minisatip - default = "2.0.71" + default = "2.0.72" } variable "LICENSE" { From 4259ab8c121f29cafbbcd49d8a7c9ffa93719947 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Fri, 20 Feb 2026 13:59:48 +0100 Subject: [PATCH 2/2] fix(minisatip): align Dockerfile with repo conventions (#1458) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Renovate-generated minisatip Dockerfile deviated from established repo conventions in several ways. ## Changes - **Base image tag**: `ubuntu:24.4` → `ubuntu:24.4.0` (matches every other app using this base) - **COPY permissions**: `COPY ./ /` → `COPY --chmod=0775 . /` - **Working directory**: Added `WORKDIR /config` at end of Dockerfile - **ENV indentation**: Normalized to consistent 4-space indent --- 💬 We'd love your input! Share your thoughts on Copilot coding agent in our [2 minute survey](https://gh.io/copilot-coding-agent-survey). --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Crow-Control <7613738+Crow-Control@users.noreply.github.com> --- apps/minisatip/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/minisatip/Dockerfile b/apps/minisatip/Dockerfile index c662d3691..c7c011fde 100644 --- a/apps/minisatip/Dockerfile +++ b/apps/minisatip/Dockerfile @@ -1,5 +1,4 @@ - -FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:36c48bc0fd413c8ef2ae9761b1decc96fa8295f44407a9b7280bd137c2109355 +FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:36c48bc0fd413c8ef2ae9761b1decc96fa8295f44407a9b7280bd137c2109355 # set version label ARG VERSION @@ -7,8 +6,8 @@ ARG TARGETARCH USER root ENV \ - MAKEFLAGS="-j4" \ - ATTACHED_DEVICES_PERMS="/dev/dvb -type c" + MAKEFLAGS="-j4" \ + ATTACHED_DEVICES_PERMS="/dev/dvb -type c" RUN \ echo "**** install packages ****" && \ @@ -53,7 +52,8 @@ RUN \ # add local files USER apps COPY container-test.yaml /container-test.yaml -COPY ./ / +COPY --chmod=0775 . / # ports and volumes EXPOSE 8875 554 1900/udp +WORKDIR /config