mirror of
https://github.com/soconnor0919/resume-cv.git
synced 2025-12-15 07:24:43 -05:00
Resolve line break errors in .tex file
This commit is contained in:
17
Dockerfile
Normal file
17
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user