Skip to content

Commit

Permalink
Fixes FromAsCasing
Browse files Browse the repository at this point in the history
```
[error]  - FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)
```
  • Loading branch information
Marcus-Rosti authored Jul 10, 2024
1 parent 7d2eece commit 518a9eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ object DockerPlugin extends AutoPlugin {
* FROM command
*/
private final def makeFromAs(dockerBaseImage: String, name: String): CmdLike =
Cmd("FROM", dockerBaseImage, "as", name)
Cmd("FROM", dockerBaseImage, "AS", name)

/**
* @param label
Expand Down

0 comments on commit 518a9eb

Please sign in to comment.