plugin/builder-docker

This commit is contained in:
Mitchell Hashimoto 2013-11-08 16:57:13 -08:00
parent 3feab1dea1
commit 6047c9a469
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package main
import (
"github.com/mitchellh/packer/builder/docker"
"github.com/mitchellh/packer/packer/plugin"
)
func main() {
plugin.ServeBuilder(new(docker.Builder))
}

View File

@ -0,0 +1 @@
package main