Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 12, 2024
1 parent ea555cb commit f7001dc
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions src/test/aspire-8.0/withdockerfile.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,43 @@
"$schema": "https://json.schemastore.org/aspire-8.0.json",
"resources": {
"goversion": {
"type": "parameter.v0",
"value": "{goversion.inputs.value}",
"inputs": {
"value": {
"type": "string"
}
}
},
"secret": {
},
"type": "parameter.v0",
"value": "{secret.inputs.value}",
"inputs": {
"value": {
"type": "string",
"secret": true
}
}
"value": "{goversion.inputs.value}"
},
"mycontainer": {
"type": "container.v1",
"build": {
"context": "qots",
"dockerfile": "qots/Dockerfile",
"args": {
"GO_VERSION": "{goversion.value}"
},
"context": "qots",
"dockerfile": "qots/Dockerfile",
"secrets": {
"SECRET_ASFILE": {
"type": "file",
"source": "Program.cs"
},
"SECRET_ASENV": {
"type": "env",
"value": "{secret.value}"
},
"SECRET_ASFILE": {
"source": "Program.cs",
"type": "file"
}
}
}
},
"type": "container.v1"
},
"secret": {
"inputs": {
"value": {
"secret": true,
"type": "string"
}
},
"type": "parameter.v0",
"value": "{secret.inputs.value}"
}
}
}
}

0 comments on commit f7001dc

Please sign in to comment.