mirror of
https://github.com/soconnor0919/resume-cv.git
synced 2025-12-11 05:24:44 -05:00
17 lines
405 B
Docker
17 lines
405 B
Docker
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"] |