# Docker Bake file for KidsAI Explorer # This enables better build performance when using COMPOSE_BAKE=true target "default" { context = "." dockerfile = "Dockerfile" tags = ["kidsai-explorer:latest"] platforms = ["linux/amd64", "linux/arm64"] } target "development" { inherits = ["default"] target = "development" tags = ["kidsai-explorer:dev"] } target "production" { inherits = ["default"] target = "production" tags = ["kidsai-explorer:prod"] } group "default" { targets = ["default"] } group "all" { targets = ["development", "production"] }