Moving dep builds into Dockerfile and multi-stage builds.

This commit is contained in:
Travis Reeder
2017-06-06 15:02:08 -07:00
committed by Denis Makogon
parent 0276a1c156
commit f628e39490
17 changed files with 268 additions and 226 deletions

View File

@@ -9,6 +9,13 @@ type DotNetLangHelper struct {
BaseHelper
}
func (lh *DotNetLangHelper) BuildFromImage() string {
return "microsoft/dotnet:1.0.1-sdk-projectjson"
}
func (lh *DotNetLangHelper) RunFromImage() string {
return "microsoft/dotnet:runtime"
}
func (lh *DotNetLangHelper) Entrypoint() string {
return "dotnet dotnet.dll"
}