From 02e042808fdae710b9a845aec9308b3f0fcefc1e Mon Sep 17 00:00:00 2001 From: ironballista <87903825+ironballista@users.noreply.github.com> Date: Fri, 27 Dec 2024 13:45:46 +0100 Subject: [PATCH] Renamed script file to avoid shadowing stdlib module. --- Dockerfile | 2 +- sched.py => schedule_script.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename sched.py => schedule_script.py (100%) diff --git a/Dockerfile b/Dockerfile index 42b67be..dff613b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,5 +14,5 @@ RUN pip install --no-cache-dir -r requirements.txt EXPOSE 8080 # Run app.py when the container launches -CMD ["python3", "sched.py"] +CMD ["python3", "schedule_script.py"] diff --git a/sched.py b/schedule_script.py similarity index 100% rename from sched.py rename to schedule_script.py -- 2.51.2