From e41a3448ab4592b6bcf66d7ab1e220f6cd4183d8 Mon Sep 17 00:00:00 2001 From: elinuxhenrik Date: Thu, 5 May 2022 15:56:18 +0200 Subject: [PATCH] Modify Dockerfile to accept parameters Issue-ID: NONRTRIC-749 Signed-off-by: elinuxhenrik Change-Id: Ic49c0530a0c2b351c3a8b8bb5e50b7e38e04ba95 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4434e70..9f1a642 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,5 +10,6 @@ RUN pip3 install -r requirements.txt COPY ./src . -CMD [ "python3", "main.py"] +ENTRYPOINT [ "python3", "main.py" ] +CMD [] -- 2.16.6