Files
laravel-php-fpm/build.sh
2022-06-21 10:29:22 +02:00

10 lines
130 B
Bash
Executable File

#!/usr/bin/env bash
if [ $# -eq 0 ]
then
tag='latest'
else
tag=$1
fi
docker build -t jkaninda/laravel-php-fpm:$tag .