🌳
pt0/deployF/ptDeployActions/dockerfileActionAI.mts
3import type { BakedDf } from '../dockerF/dockFileF.mts'
5export const dockerfile: PtAction = async () => {
6 console.log((await getBuiltDfA() as BakedDf[]).map(({dockerfileContent, repo_name_tag}) => {
7 return [
8 dockerfileContent,
9 `# fin ${repo_name_tag}`,
10 ].join("\n")
11 }).join("\n\n"))
13dockerfile.gensDf = true
14dockerfile.cliDescript = `show Dockerfile that would be built, pushed, & ref'd as image in k8s`