robocar-camera/Makefile

12 lines
203 B
Makefile
Raw Normal View History

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