Skip to content
DocsTry Aspire
DocsTry

IDistributedApplicationBuilder.addDockerfileFactory

Method
📦 Aspire.Hosting v13.4.0
interface IDistributedApplicationBuilder {
// ... omitted for brevity
addDockerfileFactory(name: string, contextPath: string, dockerfileFactory: (arg: DockerfileFactoryContext) => Promise<string>, stage?: string): ContainerResource;
}

Signature

methodaddDockerfileFactorybuilder
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): ContainerResource
namestring
contextPathstring
dockerfileFactory(arg: DockerfileFactoryContext) => Promise<string>
stagestringoptional
ContainerResource

Defined on

This method is defined on the following type: