🌳
pt0/deployF/dockerF/dockerUtilsF.mts
1import * as _ from 'lodash-es'
6export const nextDeployCtx = genContext()
8export const getReqNextDeployCtx = () => {
9 const store = nextDeployCtx.getStore()
11 return store
14export const madgeDfEnabled = true
16export const dockBumpNo = (
17 'dockbump39'
19export const afterYarnBumpNo = `yarninstallbump10${madgeDfEnabled.toString()}`
20export const getDeployWpReplaceTokens = () => {
21 return _.get(nextDeployCtx.getStore(), 'prebuildEnvConfH.wpManReplaceTokH')
24export const isKanikojob = () => getDockName() === 'kanikojob'
26export const getDfBuildLabel = ({dfLabel, name, repo_name_tag}: {dfLabel?: string, name?: string, repo_name_tag?: string}) =>
27 dfLabel || name || repo_name_tag || 'build'