@@ -6,23 +6,23 @@ TAG?=latest
66export DOCKER_CLI_EXPERIMENTAL =enabled
77
88build :
9- docker build -t alexellis /inlets-operator:$(TAG ) -amd64 . -f Dockerfile
10- docker build --build-arg OPTS=" GOARCH=arm64" -t alexellis /inlets-operator:$(TAG ) -arm64 . -f Dockerfile
11- docker build --build-arg OPTS=" GOARCH=arm GOARM=6" -t alexellis /inlets-operator:$(TAG ) -armhf . -f Dockerfile
9+ docker build -t inlets /inlets-operator:$(TAG ) -amd64 . -f Dockerfile
10+ docker build --build-arg OPTS=" GOARCH=arm64" -t inlets /inlets-operator:$(TAG ) -arm64 . -f Dockerfile
11+ docker build --build-arg OPTS=" GOARCH=arm GOARM=6" -t inlets /inlets-operator:$(TAG ) -armhf . -f Dockerfile
1212
1313push :
14- docker push alexellis /inlets-operator:$(TAG ) -amd64
15- docker push alexellis /inlets-operator:$(TAG ) -arm64
16- docker push alexellis /inlets-operator:$(TAG ) -armhf
14+ docker push inlets /inlets-operator:$(TAG ) -amd64
15+ docker push inlets /inlets-operator:$(TAG ) -arm64
16+ docker push inlets /inlets-operator:$(TAG ) -armhf
1717
1818manifest :
19- docker manifest create --amend alexellis /inlets-operator:$(TAG ) \
20- alexellis /inlets-operator:$(TAG ) -amd64 \
21- alexellis /inlets-operator:$(TAG ) -arm64 \
22- alexellis /inlets-operator:$(TAG ) -armhf
23- docker manifest annotate alexellis /inlets-operator:$(TAG ) alexellis /inlets-operator:$(TAG ) -arm64 --os linux --arch arm64
24- docker manifest annotate alexellis /inlets-operator:$(TAG ) alexellis /inlets-operator:$(TAG ) -armhf --os linux --arch arm --variant v6
25- docker manifest push alexellis /inlets-operator:$(TAG )
19+ docker manifest create --amend inlets /inlets-operator:$(TAG ) \
20+ inlets /inlets-operator:$(TAG ) -amd64 \
21+ inlets /inlets-operator:$(TAG ) -arm64 \
22+ inlets /inlets-operator:$(TAG ) -armhf
23+ docker manifest annotate inlets /inlets-operator:$(TAG ) inlets /inlets-operator:$(TAG ) -arm64 --os linux --arch arm64
24+ docker manifest annotate inlets /inlets-operator:$(TAG ) inlets /inlets-operator:$(TAG ) -armhf --os linux --arch arm --variant v6
25+ docker manifest push inlets /inlets-operator:$(TAG )
2626
2727test :
2828 go test ./...
0 commit comments