From 37b77a6cdd25be42f31eb114e6c77a1f0c9fbc33 Mon Sep 17 00:00:00 2001 From: udayakr <37626471+udayakr@users.noreply.github.com> Date: Sun, 10 Feb 2019 16:27:41 +0530 Subject: [PATCH] modified dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index b85a464..8a6bccf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,4 +15,8 @@ RUN pip install pyinstaller && \ # Set the user to use when running a container USER pyinstaller +# Container will by default run 'pyinstaller --help' +ENTRYPOINT [ "pyinstaller" ] +CMD [ "--help" ] + CMD ["gunicorn", "-w 4", "main:app"]