7 lines
227 B
Bash
Executable File
7 lines
227 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
cd "$(dirname $(dirname "$0"))" || exit
|
|
|
|
source .env
|
|
mkdir -p "$SDK_PATH" "$PUBLISH_PATH" "$BUILD_PATH" "$TARGET_PATH"
|
|
docker compose run --rm --user $(id -u):$(id -g) --build --remove-orphans builder |