remove tag experimental

This commit is contained in:
Tuna
2016-10-21 01:40:34 +02:00
parent 327f96943e
commit 670d8423e5
3 changed files with 60 additions and 10 deletions
+2 -4
View File
@@ -64,15 +64,13 @@ $ make binary
Or `go build`:
```console
$ go build -tags experimental -o kompose ./cli/main
$ go build -o kompose ./cli/main
```
You need `-tags experimental` because the current `bundlefile` package of docker/libcompose is still experimental.
If you have `go` v1.5, it's still good to build `kompose` with the following settings:
```console
$ CGO_ENABLED=0 GO15VENDOREXPERIMENT=1 go build -o kompose -tags experimental ./cli/main
$ CGO_ENABLED=0 GO15VENDOREXPERIMENT=1 go build -o kompose ./cli/main
```
To create a multi-platform binary, use the `binary-cross` command via `make`: