Instead of putting everything in one makefile switch to a folder called "make" with multiple makefiles. Move the original makefile to "docker.makefile" and add kaniko and truenas to fill in later.
10 lines
220 B
Makefile
10 lines
220 B
Makefile
SHELL := /bin/bash
|
|
|
|
IMAGE ?= $(shell cat IMAGE):$(shell cat VERSION)
|
|
IMAGE_LATEST ?= $(shell cat IMAGE):latest
|
|
PWD ?= $(shell pwd)
|
|
|
|
include make/docker.makefile
|
|
include make/kaniko.makefile
|
|
include make/truenas.makefile
|