mirror of
https://github.com/jkaninda/laravel-php-fpm.git
synced 2025-12-06 17:09:39 +01:00
10 lines
130 B
Bash
Executable File
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 .
|