Skip to content

Commit

Permalink
feat: associate with Dockerfile.*
Browse files Browse the repository at this point in the history
This convention used to be noted in the Docker documentation for some
time recently, and has stuck here and there even though the docs no
longer refer to it.

docker/docs#9245 (comment)
  • Loading branch information
scop committed Jan 8, 2025
1 parent d208687 commit 00cbb5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wasm_plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ impl SyncPluginHandler<Configuration> for DockerfilePluginHandler {
},
file_matching: FileMatchingInfo {
file_extensions: vec!["dockerfile".to_string()],
file_names: vec!["Dockerfile".to_string()],
file_names: vec!["Dockerfile".to_string(), "Dockerfile.*".to_string()],
},
}
}
Expand Down

0 comments on commit 00cbb5e

Please sign in to comment.