mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-18 09:52:35 +00:00
fix: image as last argument of docker run
This commit is contained in:
parent
f13bd58e77
commit
bb8b0ad0d8
1 changed files with 1 additions and 1 deletions
|
|
@ -14,9 +14,9 @@ class Renovate {
|
||||||
runDockerContainer(): void {
|
runDockerContainer(): void {
|
||||||
const commandArguments = [
|
const commandArguments = [
|
||||||
'--rm',
|
'--rm',
|
||||||
this.docker.image(),
|
|
||||||
`--env ${this.configurationFileEnv}='${this.configurationFile}`,
|
`--env ${this.configurationFileEnv}='${this.configurationFile}`,
|
||||||
`--env ${this.tokenEnv}='${this.token}`,
|
`--env ${this.tokenEnv}='${this.token}`,
|
||||||
|
this.docker.image(),
|
||||||
];
|
];
|
||||||
const command = `docker run ${commandArguments.join(' ')}`;
|
const command = `docker run ${commandArguments.join(' ')}`;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue