-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainerfile
More file actions
20 lines (16 loc) · 940 Bytes
/
Containerfile
File metadata and controls
20 lines (16 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM debian:bookworm-slim
LABEL org.opencontainers.image.authors="librefos"
LABEL org.opencontainers.image.description="Lightweight TexLive environment for PDF compilation"
LABEL org.opencontainers.image.source="https://github.com/librefos/cv"
RUN apt-get update && apt-get install -y --no-install-recommends \
texlive-latex-base \
texlive-latex-extra \
texlive-fonts-recommended \
texlive-fonts-extra \
texlive-pictures \
texlive-lang-portuguese \
git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace
CMD ["bash", "toPDF.sh", "cv.tex"]