16 lines
No EOL
322 B
Docker
16 lines
No EOL
322 B
Docker
# 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"] |