Created dotnet2.0 Builder Image and Added /v2/specialized Endpoint to dotnet2.0 Envrionment (#1001)

This commit is contained in:
Paras Patidar
2019-05-15 16:35:55 +08:00
committed by Ta-Ching Chen
parent 56fa8fe766
commit 4632269314
35 changed files with 1973 additions and 5 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
set -euxo pipefail
cd ${SRC_PKG}
#now start execution of custom logic dll in such a way that it should copy everything in ${SRC_PKG}
#first lets try putting sample file which will prove that this worked
echo src : ${SRC_PKG} ,dest: ${DEPLOY_PKG} >builderpaths.txt
#now run actual dll for custom builder logic
# please note as this need to be executed from app folder so that all dependent files are avilable
# else you will end up getting File not found error
cd /app
#now execute dll
dotnet Builder.dll
#copy entire content to deployment package
cp -r ${SRC_PKG} ${DEPLOY_PKG}