mirror of
https://github.com/soconnor0919/resume-cv.git
synced 2026-02-04 21:06:31 -05:00
16 lines
328 B
Docker
16 lines
328 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 \
|
|
make \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /workspace
|
|
|
|
# Default command runs make
|
|
CMD ["make", "all"] |