Files
dokku/tests/apps/python/cnb/2/bin/build
Jose Diaz-Gonzalez 4cf717baf8 fix: set default process list in test buildpacks
Also include the packeto-buildpacks/procfile buildpack to ensure the Procfile is interpolated for a process list.
2021-10-06 03:06:54 -04:00

30 lines
457 B
Bash
Executable File

#!/usr/bin/env bash
layers_dir=$1
echo "Building with buildpack 2"
bp_layer=$layers_dir/2
bp_env_dir=$bp_layer/env
mkdir -p $bp_env_dir
export TESTENV="$TESTENV:anotherenv"
echo "===> env start"
env
echo "===> env end"
echo "TESTENV_2" >$bp_env_dir/TESTENV
{
echo "[types]"
echo "launch = true"
echo "build = true"
echo "cache = true"
} >"${bp_layer}.toml"
cat >"$layers_dir/launch.toml" <<EOL
[[processes]]
type = "web"
command = "true"
EOL