alpine-nginx-php/Makefile
2015-11-08 22:21:16 +00:00

13 lines
274 B
Makefile

CURRENT_DIRECTORY := $(shell pwd)
NAME = alpine-nginx-php
TAG = latest
IMAGE = michaeldim/$(NAME)
build:
@docker build -t $(IMAGE):$(TAG) $(CURRENT_DIRECTORY)
build-no-cache:
@docker build -t $(IMAGE):$(TAG) --no-cache $(CURRENT_DIRECTORY)
.PHONY: build build-no-cache