mirror of
https://github.com/luzifer-docker/alpine-nginx-php.git
synced 2024-11-09 09:50:01 +00:00
12 lines
274 B
Makefile
12 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
|