| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | echo offcall setEnvVars.batdocker -vset START_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"echo start time %START_TIME%rem call Set-ExecutionPolicy RemoteSigned -Scope Processcd ./maxkey-web-frontend/maxkey-web-apprem ng buildcall ng     build --base-href /maxkey/call docker build -f Dockerfile -t %MXK_REPOSITORY%/maxkey-frontend  .rem maxkey-frontend:latestrem push to docker hubcall docker push %MXK_REPOSITORY%/maxkey-frontendrem maxkey-frontend:$versioncall docker tag  %MXK_REPOSITORY%/maxkey-frontend %MXK_REPOSITORY%/maxkey-frontend:%MXK_VERSION%rem push to docker hubcall docker push %MXK_REPOSITORY%/maxkey-frontend:%MXK_VERSION%cd ../../cd ./maxkey-web-frontend/maxkey-web-mgt-apprem ng buildcall ng     build --base-href /maxkey-mgt/call docker build -f Dockerfile -t %MXK_REPOSITORY%/maxkey-mgt-frontend  .rem maxkey-mgt-frontend:latestrem push to docker hubcall docker push %MXK_REPOSITORY%/maxkey-mgt-frontendrem maxkey-mgt-frontend:$versioncall docker tag %MXK_REPOSITORY%/maxkey-mgt-frontend %MXK_REPOSITORY%/maxkey-mgt-frontend:%MXK_VERSION%rem push to docker hubcall docker push %MXK_REPOSITORY%/maxkey-mgt-frontend:%MXK_VERSION%set END_TIME="%date:~0,10% %time:~0,2%:%time:~3,5%"echo Build Release start at %START_TIME%  complete at %END_TIME%.pause
 |