mirror of
https://github.com/friendica/docker
synced 2024-11-05 18:41:52 +01:00
Philipp Holzer
b46fae9173
- Using 2018.05-rc as stable/productionin - Using "update.sh" for creating the environments (single point of change)
19 lines
387 B
Bash
Executable file
19 lines
387 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
image="$1"
|
|
|
|
cd .examples/dockerfiles
|
|
|
|
dirs=( */ )
|
|
dirs=( "${dirs[@]%/}" )
|
|
for dir in "${dirs[@]}"; do
|
|
if [ -d "$dir/$VARIANT" ]; then
|
|
(
|
|
cd "$dir/$VARIANT"
|
|
sed -ri -e 's|^FROM .*|FROM '"$image"'|g' 'Dockerfile'
|
|
docker build -t "$image-$dir" .
|
|
~/official-images/test/run.sh "$image-$dir"
|
|
)
|
|
fi
|
|
done |