This repository has been archived on 2026-08-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
latex-docker/Makefile
T
volker.raschekandCopilot f7bf720b6c
Lint Markdown files / markdown-lint (push) Successful in 10s
Build / build-arch-linux (push) Successful in 4m26s
refactor: simplify Makefile by removing unused targets and variables
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>
2026-08-21 10:10:30 +02:00

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}