mirror of
https://github.com/dokku/dokku.git
synced 2026-09-02 20:22:30 +02:00
24 lines
371 B
Bash
Executable File
24 lines
371 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"
|