mirror of
https://github.com/pion/mediadevices.git
synced 2026-04-22 15:57:27 +08:00
1b5203d3a0
With this new build system, it'll make it easier to compile third-party libraries statically to multiple platforms.
14 lines
204 B
Bash
Executable File
14 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd $(dirname $0)
|
|
|
|
OWNER=lherman
|
|
PREFIX=cross
|
|
IMAGES=$(ls *.Dockerfile)
|
|
|
|
for image in ${IMAGES[@]}
|
|
do
|
|
tag=${OWNER}/cross-${image//.Dockerfile/}
|
|
docker build -t "${tag}" -f "$image" .
|
|
done
|