From d006e2e587ae7748b4f425754e43df8807d064ae Mon Sep 17 00:00:00 2001 From: simonmicro Date: Sat, 8 Nov 2025 13:41:17 +0100 Subject: [PATCH] Removed duplicate perm-setting (already part of Dockerfile) Signed-off-by: simonmicro --- docker/entrypoint.py | 1 - 1 file changed, 1 deletion(-) diff --git a/docker/entrypoint.py b/docker/entrypoint.py index b4f77ea..b564966 100755 --- a/docker/entrypoint.py +++ b/docker/entrypoint.py @@ -26,7 +26,6 @@ def change_uid_grp(logger): new_uid = int(os.getenv('UID', str(uid))) os.chown("/home/py-kms", new_uid, new_gid) os.chmod("/home/py-kms", 0o700) - os.chmod("/usr/bin/start.py", 0o555) # allow execution by non-root users if os.path.isdir(dbPath): # Correct permissions recursively, as to access the database file, also its parent folder must be accessible logger.debug(f'Correcting owner permissions on {dbPath}')