1234567891011121314151617181920212223242526272829303132333435 |
- # 設定 ASCII 藝術字的內容
- $asciiArt = @"
- _____ ________ ________ _ ____ _____ __ __ ______ _ _ _______
- | __ \| ____\ \ / / ____| | / __ \| __ \| \/ | ____| \ | |__ __|
- | | | | |__ \ \ / /| |__ | | | | | | |__) | \ / | |__ | \| | | |
- | | | | __| \ \/ / | __| | | | | | | ___/| |\/| | __| | . ` | | |
- | |__| | |____ \ / | |____| |___| |__| | | | | | | |____| |\ | | |
- |_____/|______| \/ |______|______\____/|_| |_| |_|______|_| \_| |_|
-
-
- "@
- # 顯示 ASCII 藝術字
- Write-Host $asciiArt
- #第一次建立專案請先設定ACR Name
- $registryname="evdevcontainerregistry"
- $fullregistryname="evdevcontainerregistry.azurecr.io"
- #第一次建立專案請先設定專案名稱
- $imagerepositoryname="dbapi"
- $dev_prefix = "dbapi_test_8019"
- $tagname= "dbapi_test_8019"
- $fulltag=$fullregistryname+"/"+$imagerepositoryname+":"+$tagname
- $imagename = $imagerepositoryname+":"+$tagname
- $ssha = git rev-parse --short head
- #wite ssha to file
- $ssha | Out-File gitcommit
-
- podman build ./ -t $fulltag --label [gitcommit=$ssha,author=$username]
- #remove ssha file
- Remove-Item gitcommit
|