diff --git a/exec/application.go b/exec/application.go index ba14958..fed13d4 100644 --- a/exec/application.go +++ b/exec/application.go @@ -20,9 +20,11 @@ import ( const ( appBuildTypeBuildpack appBuildType = "buildpack" appBuildTypeDockerfile appBuildType = "dockerfile" - buildpackEntrypoint = "launcher" - defaultShellBuildpack = "/bin/bash" - defaultShellDockerfile = "/bin/sh" + // the launcher binary helps in setting up the application expected + // environment + buildpackEntrypoint = "/cnb/lifecycle/launcher" + defaultShellBuildpack = "/bin/bash" + defaultShellDockerfile = "/bin/sh" ) // appBuildType describes the way how the app was build (buildpack/dockerfile)