mirror of
https://github.com/valitydev/koffing.git
synced 2024-11-06 01:05:19 +00:00
51 lines
1.0 KiB
Makefile
51 lines
1.0 KiB
Makefile
SUBMODULES = build_utils
|
|
SUBTARGETS = $(patsubst %,%/.git,$(SUBMODULES))
|
|
|
|
UTILS_PATH := build_utils
|
|
TEMPLATES_PATH := .
|
|
|
|
# Name of the service
|
|
SERVICE_NAME := koffing
|
|
# Service image default tag
|
|
SERVICE_IMAGE_TAG ?= $(shell git rev-parse HEAD)
|
|
# The tag for service image to be pushed with
|
|
SERVICE_IMAGE_PUSH_TAG ?= $(SERVICE_IMAGE_TAG)
|
|
|
|
# Base image for the service
|
|
BASE_IMAGE_NAME := service-fe
|
|
BASE_IMAGE_TAG := 768cf0f40600e290060502e047dd2e86d4fd6020
|
|
|
|
BUILD_IMAGE_TAG := 55e987e74e9457191a5b4a7c5dc9e3838ae82d2b
|
|
|
|
CALL_W_CONTAINER := init build clean submodules
|
|
|
|
.PHONY: $(CALL_W_CONTAINER)
|
|
|
|
all: build
|
|
|
|
-include $(UTILS_PATH)/make_lib/utils_image.mk
|
|
-include $(UTILS_PATH)/make_lib/utils_container.mk
|
|
|
|
$(SUBTARGETS): %/.git: %
|
|
git submodule update --init $<
|
|
touch $@
|
|
|
|
submodules: $(SUBTARGETS)
|
|
|
|
init:
|
|
npm install
|
|
|
|
build: check
|
|
npm run build
|
|
|
|
clean:
|
|
rm -rf dist
|
|
|
|
.state: build_image
|
|
echo $(SERVICE_IMAGE_TAG) > $@
|
|
|
|
test: .state
|
|
docker run --rm $(SERVICE_IMAGE_NAME):$(shell cat .state) nginx -T -c /etc/nginx/nginx.conf
|
|
|
|
check:
|
|
npm run check
|