Archived
Remove container-image/delete and container-image/push targets as these operations are handled by CI workflows. Consolidate LATEX_IMAGE_REGISTRY_USER and LATEX_IMAGE_NAMESPACE into a single LATEX_IMAGE_REPOSITORY variable and drop the unused CONTAINER_RUNTIME definition. Co-authored-by: Copilot <copilot@github.com>
23 lines
779 B
Makefile
23 lines
779 B
Makefile
# ArchLinux
|
|
LATEX_IMAGE_REGISTRY_HOST?=git.cryptic.systems
|
|
LATEX_IMAGE_REPOSITORY?=volker.raschek/latex
|
|
LATEX_IMAGE_VERSION?=latest
|
|
LATEX_IMAGE_FULLY_QUALIFIED=${LATEX_IMAGE_REGISTRY_HOST}/${LATEX_IMAGE_REPOSITORY}:${LATEX_IMAGE_VERSION}
|
|
|
|
# BUILD LATEX CONTAINER IMAGE
|
|
# ==============================================================================
|
|
PHONY+=container-image/build/arch-linux
|
|
container-image/build/arch-linux:
|
|
podman build \
|
|
--file Dockerfile.archlinux \
|
|
--no-cache \
|
|
--pull \
|
|
--tag ${LATEX_IMAGE_FULLY_QUALIFIED} \
|
|
.
|
|
|
|
# PHONY
|
|
# ==============================================================================
|
|
# Declare the contents of the PHONY variable as phony. We keep that information
|
|
# in a variable so we can use it in if_changed.
|
|
.PHONY: ${PHONY}
|