Refactor: Replaced individual build scripts with a Makefile and helper script for managing local and Docker builds, alongside updates to resume and CV content sections.

This commit is contained in:
Sean O'Connor
2026-02-04 00:16:34 -05:00
parent e54a0e36e6
commit 59f172bd0b
15 changed files with 309 additions and 365 deletions

View File

@@ -7,11 +7,10 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
texlive-full \
latexmk \
make \
&& 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"]
# Default command runs make
CMD ["make", "all"]