From 11a4aba46ffb0eea8a0ca6dbdda78582e6c0f9ba Mon Sep 17 00:00:00 2001 From: 0xWheatyz Date: Thu, 5 Mar 2026 23:17:30 -0500 Subject: [PATCH] fix(dockerfile): was expecting ubuntu like syntax for user management --- Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d8b47a1..91013da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,9 +8,5 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . -RUN useradd app - -USER app - CMD ["python3", "main.py"]