1
0
mirror of https://github.com/kylemanna/docker-aosp synced 2026-08-11 16:33:05 +00:00

Add convenience Makefile to easily rebuild image

This commit is contained in:
Jean-Christophe Fillion-Robin
2016-04-19 12:49:20 -04:00
parent 4d16a0fa30
commit 9934955ab3
+9
View File
@@ -0,0 +1,9 @@
DOCKER = docker
IMAGE = kylemanna/aosp
aosp: Dockerfile
$(DOCKER) build -t $(IMAGE) .
all: aosp
.PHONY: all