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"]