1
0
mirror of https://github.com/kylemanna/docker-aosp synced 2025-06-06 15:36:36 +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
Makefile Normal file
View File

@ -0,0 +1,9 @@
DOCKER = docker
IMAGE = kylemanna/aosp
aosp: Dockerfile
$(DOCKER) build -t $(IMAGE) .
all: aosp
.PHONY: all