From 7cbec8882688dbfaa55f2c1a566614c989d3bb1e Mon Sep 17 00:00:00 2001 From: "T. Andrew Manning" Date: Tue, 17 Dec 2024 08:59:28 -0600 Subject: [PATCH] Avoid build warning by using JSON list in CMD --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9032f6a..dc2e0e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,4 +8,4 @@ ENV PYTHONUNBUFFERED=1 \ RUN pip install kubernetes COPY main.py / -CMD python /main.py +CMD ["python", "/main.py"]