Files
laravel-php-fpm/build.sh

9 lines
129 B
Bash
Raw Normal View History

2022-06-18 10:31:47 +02:00
#!/usr/bin/env bash
if [ $# -eq 0 ]
then
tag='latest'
else
tag=$1
fi
docker build -t jkaninda/laravel-php-fpm:$tag .