You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To provide some background here is our use case that would benefit from that.
We use .nvmrc files in pour projects and automatically build docker images name from it's content.
We have things like the following in our CI/CD (Jenkinsfile in our case)
insideDocker(dockerImageFromNVM()) {
// here we should be in a docker container whose tag has been computed from nvmrc content
// base image is by default node
// supposing our .nvmrc contains `v16`
// so something like "node:16"
}
but we also have usages like the following for webapps/libraries projects
insideDocker(dockerImageFromNVM(base: "cypress/base")) {
// here we should be in a docker container whose tag has been computed from nvmrc content
// base image here will be cypress/base
// so something like "cypress/base:16"
}
In CI/CD tags with only
major
and/ormajor.minor
version numbers would be really helpfulThe text was updated successfully, but these errors were encountered: