mirror of
https://github.com/valitydev/holmes.git
synced 2024-11-06 01:45:25 +00:00
7a430d6ec9
* MSPF-445: Add Step and correct paths for step calls in keyring.py * MSPF-445: Move installation of Step to base image and remove binary from holmes * MSPF-445: Remove party_migration_script due to being useless and not being OTP 21 compliant * MSPF-445: Remove last mention of party_migration_script
35 lines
877 B
Makefile
35 lines
877 B
Makefile
UTILS_PATH := build_utils
|
|
TEMPLATES_PATH := .
|
|
|
|
# Name of the service
|
|
SERVICE_NAME := holmes
|
|
# 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 := build
|
|
BASE_IMAGE_TAG := accaf81566fd3ad14bc6eadb26375ca83e76038f
|
|
|
|
# Build image tag to be used
|
|
BUILD_IMAGE_TAG := accaf81566fd3ad14bc6eadb26375ca83e76038f
|
|
|
|
CALL_ANYWHERE := all submodules lib
|
|
|
|
# Hint: 'test' might be a candidate for CALL_W_CONTAINER-only target
|
|
CALL_W_CONTAINER := $(CALL_ANYWHERE)
|
|
|
|
.PHONY: $(CALL_W_CONTAINER)
|
|
|
|
all: submodules
|
|
|
|
-include $(UTILS_PATH)/make_lib/utils_container.mk
|
|
-include $(UTILS_PATH)/make_lib/utils_image.mk
|
|
|
|
submodules:
|
|
@if git submodule status | egrep -q '^[-]|^[+]'; then git submodule update --init; fi
|
|
|
|
lib:
|
|
$(MAKE) -C lib
|