mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 01:04:09 +08:00
12 lines
215 B
Makefile
12 lines
215 B
Makefile
.PHONY: docker_build docker_push all
|
|
|
|
DATE := $(shell date +%Y-%m-%d)
|
|
|
|
docker_build:
|
|
docker build -f Dockerfile -t px4-dev:${DATE} .
|
|
|
|
docker_push: build
|
|
docker push px4io/px4-dev:${DATE}
|
|
|
|
all: docker_build
|