diff --git a/src/lib/buildPacks/python.ts b/src/lib/buildPacks/python.ts index 1aad28fe6..1c6bdf6bf 100644 --- a/src/lib/buildPacks/python.ts +++ b/src/lib/buildPacks/python.ts @@ -47,9 +47,7 @@ const createDockerfile = async (data, image): Promise => { } Dockerfile.push(`COPY .${baseDirectory || ''} ./`); Dockerfile.push(`EXPOSE ${port}`); - console.log({ pythonWSGI }); if (pythonWSGI?.toLowerCase() === 'gunicorn') { - console.log({ pythonModule, pythonVariable }); Dockerfile.push(`CMD gunicorn -w=4 -b=0.0.0.0:8000 ${pythonModule}:${pythonVariable}`); } else if (pythonWSGI?.toLowerCase() === 'uwsgi') { Dockerfile.push(