From f77de20500572db3691f5b3ac7a1fddc072626b3 Mon Sep 17 00:00:00 2001 From: Ariel Rokem Date: Sat, 29 Jul 2023 21:08:09 -0700 Subject: [PATCH] User call directly to Python again as instructed in python docker docs --- cloudknot/templates/Dockerfile.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudknot/templates/Dockerfile.template b/cloudknot/templates/Dockerfile.template index 4278b17..622717e 100644 --- a/cloudknot/templates/Dockerfile.template +++ b/cloudknot/templates/Dockerfile.template @@ -24,7 +24,7 @@ ENV HOME /home/${username} WORKDIR /home/${username} # Set entrypoint -ENTRYPOINT ["/usr/bin/python", "/home/${username}/${script_base_name}"] +ENTRYPOINT ["python", "/home/${username}/${script_base_name}"] # Copy the python script COPY ${script_base_name} /home/${username}/