mirror of
https://github.com/jkaninda/nginx-php-fpm.git
synced 2025-12-06 21:49:41 +01:00
10 lines
128 B
Bash
Executable File
10 lines
128 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [ $# -eq 0 ]
|
|
then
|
|
tag='latest'
|
|
else
|
|
tag=$1
|
|
fi
|
|
|
|
docker build -t jkaninda/nginx-php-fpm:$tag .
|