From 7279185f1a74d5afa96c58a5256414917e9e2e00 Mon Sep 17 00:00:00 2001 From: Matthias Bilger Date: Sat, 18 Oct 2025 17:55:32 +0200 Subject: [PATCH] updated for python 3.14 and chmod --- Dockerfile | 2 +- script.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8dbc52c..84cb8d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7 +FROM python:3.14 VOLUME ["/in", "/out"] diff --git a/script.py b/script.py index c05869d..8544286 100644 --- a/script.py +++ b/script.py @@ -46,6 +46,7 @@ def _main(): continue tpath = fpath.replace(config["dirs"]["from"], config["dirs"]["to"]) shutil.move(fpath, tpath) + os.chmod(tpath, 0o666) log(f"moved {fpath}") for filename in completed: