From b1b472782c7dec5a7f40696b111724a845114b21 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 2 Aug 2026 06:50:37 +0200 Subject: [PATCH] Fix binance-trading-bot build permissions --- binance-trading-bot/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/binance-trading-bot/Dockerfile b/binance-trading-bot/Dockerfile index 26c8502ad4..8007d36fc5 100644 --- a/binance-trading-bot/Dockerfile +++ b/binance-trading-bot/Dockerfile @@ -19,6 +19,10 @@ ARG BUILD_UPSTREAM="0.0.101" ARG BUILD_FROM FROM $BUILD_FROM +# The upstream image now defaults to an unprivileged user, while this add-on +# needs root during image customization and for its S6-managed services. +USER root + ################## # 2 Modify Image # ##################