Skip to content

Commit

Permalink
v1.100.0 (#331)
Browse files Browse the repository at this point in the history
* 1.100.0

* feat(docker): change build context arg name

* feat(catalog): update components
  • Loading branch information
VladyslavKurmaz authored Mar 3, 2024
1 parent cab485b commit 4b6bb0a
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion components/amazon/aws-cli/components.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/angular/components.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions components/docker/.tln.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ module.exports = {
.option('rm', { describe: '', default: false, type: 'boolean' })
.option('port', { describe: '', default: [], type: 'array' })
.option('build-arg', { describe: '', default: [], type: 'array' })
.option('build-context', { describe: '', default: '.', type: 'string' })
.option('env', { describe: '', default: [], type: 'array' })
.option('env-file', { describe: '', default: [], type: 'array' })
.option('volume', { describe: '', default: [], type: 'array' })
.option('registry', { describe: '', default: null, type: 'string' })
.option('entrypoint', { describe: '', default: null, type: 'string' })
.option('entrypoint-params', { describe: '', default: null, type: 'string' })
.option('dockerfile', { describe: '', default: null, type: 'string' })
.option('context', { describe: '', default: '.', type: 'string' })
.option('config', { describe: '', default: null, type: 'string' })
.option('suffix', { describe: '', default: null, type: 'string' })
;
Expand Down Expand Up @@ -55,7 +55,7 @@ docker builder prune${force}
const buildArgs = script.env.TLN_DOCKER_BUILD_ARG.map(v => ' --build-arg ' + v).join('');
const file = script.env.TLN_DOCKER_DOCKERFILE?` -f ${script.env.TLN_DOCKER_DOCKERFILE}`:''
script.set([`
docker build${buildArgs} -t ${tag}${file} ${script.env.TLN_DOCKER_CONTEXT}
docker build${buildArgs} -t ${tag}${file} ${script.env.TLN_DOCKER_BUILD_CONTEXT}
`]);
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion components/flutter/components.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/google/firebase/components.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/google/gcloud/components.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/gradle/components.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4b6bb0a

Please sign in to comment.