Skip to content

Commit

Permalink
fix: use exec in entrypoint (#68)
Browse files Browse the repository at this point in the history
Signed-off-by: Matej Vasek <[email protected]>
  • Loading branch information
matejvasek authored Mar 30, 2021
1 parent 2187570 commit cae702f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildpacks/python/bin/build
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ install_or_reuse_deps ${environments_layer} ${app_layer}/requirements.txt
cat <<TOML > "${layers_dir}/launch.toml"
[[processes]]
type = "web"
command = "source $environments_layer/functions/bin/activate && cd $app_layer && parliament ."
command = "source $environments_layer/functions/bin/activate && cd $app_layer && exec python3 -m parliament ."
TOML

0 comments on commit cae702f

Please sign in to comment.