mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 09:04:12 +02:00
15 lines
No EOL
484 B
Bash
Executable file
15 lines
No EOL
484 B
Bash
Executable file
#!/bin/bash
|
|
|
|
versions=("7.2" "7.3" "7.4" "8.0" "8.1")
|
|
|
|
for version in "${versions[@]}"; do
|
|
echo "building haze-php-$version"
|
|
docker build --build-arg PHP_VERSION=$version -t "icewind1991/haze-php:$version" -f "php/Dockerfile" php
|
|
done
|
|
|
|
for version in "${versions[@]}"; do
|
|
echo "building haze-$version"
|
|
docker build --build-arg PHP_VERSION=$version -t "icewind1991/haze:$version" -f "haze/Dockerfile" haze
|
|
done
|
|
|
|
docker build -t "icewind1991/haze-ldap" -f "ldap/Dockerfile" ldap |