16 lines
322 B
Text
16 lines
322 B
Text
|
# Use a minimal base image
|
||
|
FROM alpine:latest
|
||
|
|
||
|
# Install necessary packages
|
||
|
RUN apk update && apk add --no-cache \
|
||
|
texlive-full \
|
||
|
ghostscript
|
||
|
|
||
|
# Set the working directory
|
||
|
WORKDIR /tmp
|
||
|
|
||
|
# RUN lualatex --output-format=pdf cv.tex
|
||
|
|
||
|
# Specify the entrypoint
|
||
|
ENTRYPOINT ["lualatex", "--output-format=pdf"]
|
||
|
CMD ["cv.tex"]
|