addDockerfileFactory
Method
interface IDistributedApplicationBuilder { // ... omitted for brevity addDockerfileFactory( name: string, contextPath: string, dockerfileFactory: callback, stage?: string): ContainerResource;}Signature
method
addDockerfileFactory builder Adds a Dockerfile to the application model that can be treated like a container resource, with the Dockerfile content generated by an asynchronous factory function.
addDockerfileFactory(name: string, contextPath: string, dockerfileFactory: (arg: DockerfileFactoryContext) => Promise<string>, stage?: string): ContainerResourceParameters
name string contextPath string dockerfileFactory (arg: DockerfileFactoryContext) => Promise<string> stage string optional Returns
ContainerResource Applies to
This method applies to the following types: