alpine-nginx-php/Makefile

13 lines
274 B
Makefile
Raw Normal View History

CURRENT_DIRECTORY := $(shell pwd)
2015-11-08 18:58:38 +00:00
NAME = alpine-nginx-php
TAG = latest
IMAGE = michaeldim/$(NAME)
build:
@docker build -t $(IMAGE):$(TAG) $(CURRENT_DIRECTORY)
2015-11-08 18:58:38 +00:00
build-no-cache:
@docker build -t $(IMAGE):$(TAG) --no-cache $(CURRENT_DIRECTORY)
2015-11-08 18:58:38 +00:00
.PHONY: build build-no-cache