From ce2b0e39d26952e33bd40be8eec47a45ecbb438c Mon Sep 17 00:00:00 2001 From: Jacob Patterson Date: Mon, 3 Mar 2025 15:06:45 -0500 Subject: [PATCH] Attempt to fix image permissions --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bd3c976..61d814a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apk add --no-cache \ dropbear-convert=~${DROPBEAR_VERSION_PREFIX} && \ addgroup -S plugin && \ adduser -S plugin -G plugin -COPY --chown=root:plugin --chmod=770 copy.sh /bin/plugin_scp +COPY --chown=root:plugin --chmod=777 copy.sh /bin/plugin_scp USER plugin ENTRYPOINT ["/bin/plugin_scp"]