packer/plugin/builder-docker/main.go
2013-11-08 16:57:13 -08:00

10 lines
175 B
Go

package main
import (
"github.com/mitchellh/packer/builder/docker"
"github.com/mitchellh/packer/packer/plugin"
)
func main() {
plugin.ServeBuilder(new(docker.Builder))
}