mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
9 lines
153 B
Bash
Executable file
9 lines
153 B
Bash
Executable file
#!/bin/bash
|
|
_tag=$1
|
|
|
|
if [ -z "${_tag}" ]; then
|
|
source _VERSION
|
|
_tag=${_VERSION}
|
|
fi
|
|
|
|
docker build --tag "ng2-admin:${_tag}" --no-cache=true .
|