From 00cbb5e7891fa403fced919fd94bd7a0ca2e2d72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 8 Jan 2025 22:34:03 +0200 Subject: [PATCH] feat: associate with Dockerfile.* 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. https://github.com/docker/docs/issues/9245#issuecomment-1198375263 --- src/wasm_plugin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wasm_plugin.rs b/src/wasm_plugin.rs index b3f33f6..ac52298 100644 --- a/src/wasm_plugin.rs +++ b/src/wasm_plugin.rs @@ -32,7 +32,7 @@ impl SyncPluginHandler 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()], }, } }