mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-30 14:44:41 +02:00
12 lines
281 B
Bash
Executable File
12 lines
281 B
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
cd "$(dirname "$0")"
|
|
source util/vars.sh
|
|
|
|
docker build --tag "$BASE_IMAGE" images/base
|
|
docker build --build-arg GH_REPO="$REPO" --tag "$TARGET_IMAGE" "images/base-${TARGET}"
|
|
|
|
./generate.sh "$TARGET" "$VARIANT" "${ADDINS[@]}"
|
|
|
|
exec docker build --tag "$IMAGE" .
|