Resolve line break errors in .tex file

This commit is contained in:
2024-12-10 15:16:52 -05:00
parent 78d325884f
commit a8e9fab725
4 changed files with 102 additions and 24 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM ubuntu:24.04
# Prevent tzdata questions during install
ENV DEBIAN_FRONTEND=noninteractive
# Install TeX Live and required packages
RUN apt-get update && apt-get install -y \
texlive-full \
latexmk \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace
COPY . .
# For build
CMD ["latexmk", "-pdf", "-file-line-error", "-halt-on-error", "-interaction=nonstopmode", "resume.tex", "cv.tex"]