From c1ef87ab4092982d48ac1116d4147a50adafbaa7 Mon Sep 17 00:00:00 2001 From: Paul Feitzinger Date: Mon, 25 Nov 2024 18:50:33 -0500 Subject: [PATCH] switch back to using ENTRYPOINT instead of CMD --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cd98f5a..8b1583b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,4 +12,4 @@ COPY code/ ./code/ COPY config/ ./config/ RUN mkdir output -CMD ["python3", "code/main.py", "table", "--output", "/output/table.csv"] +ENTRYPOINT ["python3", "code/main.py", "table", "--output", "/output/table.csv"]