Update to correct setup

This commit is contained in:
2025-12-23 09:11:10 +01:00
parent 6a34d0cb46
commit 6e6c68794a
2 changed files with 16 additions and 4 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM git.janishutz.com/registry/latex-build-full:latest
WORKDIR /root
ENTRYPOINT [ "/root/entrypoint.sh" ]

View File

@@ -1,17 +1,24 @@
name: LaTeX Full Compilation
description: Compile LaTeX documents with preset container that supports minted
name: LaTeX compilation (full)
description: Compile LaTeX documents with preset full
author: Janis Hutz
inputs:
workdir:
description: Directory to compile in
include_helpers:
description: Whether or not to include helpers
default: "false"
args:
description: Extra arguments to be passed to latexmk
default: "-latexoption=-file-line-error -latexoption=-interaction=nonstopmode"
default: ""
extra_system_packages:
description: Install extra packages using apk
default: ""
runs:
using: docker
image: git.janishutz.com/registry/latex-build-full:latest
image: Dockerfile
args:
- ${{ inputs.file }}
- ${{ inputs.include_helpers }}
- ${{ inputs.args }}
- ${{ inputs.extra_system_packages }}
branding: