Blame view

build.sh 153 Bytes
05b0b5d8   Yarik   first commit
1
2
3
4
5
6
7
8
9
  #!/bin/bash
  _tag=$1
  
  if [ -z "${_tag}" ]; then
      source _VERSION   
      _tag=${_VERSION}
  fi
  
  docker build --tag "ng2-admin:${_tag}"  --no-cache=true .