8 lines
242 B
Makefile
8 lines
242 B
Makefile
# SPDX-FileCopyrightText: 2023 Tobias Schmidl
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
BUILDER := docker buildx
|
|
|
|
build: dockerfile
|
|
@${BUILDER} build --build-arg=GIT_COMMIT=$(shell git describe --tags --always --dirty) -t buildimage .
|