#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
# Create the docker images that we need from the dockerfiles
docker build -f php5.3-x64.dockerfile -t p4php-5.3-x64 .
docker build -f php5.4-x64.dockerfile -t p4php-5.4-x64 .
docker build -f php5.5-x64.dockerfile -t p4php-5.5-x64 .
docker build -f php5.6-x64.dockerfile -t p4php-5.6-x64 .
docker build -f php7.0-x64.dockerfile -t p4php-7.0-x64 .
docker build -f php5.3-x86.dockerfile -t p4php-5.3-x86 .
docker build -f php5.4-x86.dockerfile -t p4php-5.4-x86 .
docker build -f php5.5-x86.dockerfile -t p4php-5.5-x86 .
docker build -f php5.6-x86.dockerfile -t p4php-5.6-x86 .
docker build -f php7.0-x86.dockerfile -t p4php-7.0-x86 .