From bae6e36478dac7d3ea4a3b3400f6d63ecd164157 Mon Sep 17 00:00:00 2001 From: "k.eaven" Date: Mon, 11 Aug 2025 03:49:57 -0700 Subject: [PATCH] Update image build process --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index dfc7f8d..d127b28 100644 --- a/dockerfile +++ b/dockerfile @@ -17,7 +17,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Create a non-root user -RUN addgroup -S bot && adduser -S bot -G bot +RUN groupadd -r bot && useradd -r -g bot bot # Copy the rest of the application COPY --chown=bot:bot . .