This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| locals { | |
| a = { | |
| "key1" = "valueX" | |
| "key2" = "valueY" | |
| "key3" = "valueZ" | |
| } | |
| b = { | |
| "key1" = "valueA" | |
| "key2" = "valueB" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| IMAGE_DIRS = $(wildcard services/* bases/*) | |
| # All targets are `.PHONY` ie allways need to be rebuilt | |
| .PHONY: all ${IMAGE_DIRS} | |
| # Build all images | |
| all: ${IMAGE_DIRS} | |
| # Build and tag a single image | |
| ${IMAGE_DIRS}: |