Files
dokku/tests/apps/python/cnb/1/bin/build
Jose Diaz-Gonzalez 463601fb1c fix: update command
2023-11-25 03:42:59 -05:00

24 lines
374 B
Bash
Executable File

#!/usr/bin/env bash
layers_dir=$1
echo "Building with buildpack 1"
bp_layer=$layers_dir/1
bp_env_dir=$bp_layer/env
mkdir -p $bp_env_dir
echo "TESTENV_1" >$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