robocar-camera/Makefile

12 lines
203 B
Makefile
Raw Normal View History

2020-01-28 22:31:04 +00:00
.PHONY: test docker
DOCKER_IMG = cyrilix/robocar-camera
2020-04-04 10:32:27 +00:00
TAG = latest
2020-01-28 22:31:04 +00:00
test:
2020-04-04 10:32:27 +00:00
go test ./...
2020-01-28 22:31:04 +00:00
docker:
2020-04-04 10:32:27 +00:00
docker buildx build . --platform linux/arm/7,linux/arm64,linux/amd64 -t ${DOCKER_IMG}:${TAG} --push
2020-01-28 22:31:04 +00:00