Skip to content

Docker image to execute LuaTeX using the TeX Live distribution. The dockerfile is optimized for usage in containerized microservice.

License

Notifications You must be signed in to change notification settings

KinNeko-De/texlive-luatex

Repository files navigation

texlive-luatex

Docker image to execute LuaTeX using the TeX Live distribution. The dockerfile is optimized for usage in containerized microservice. Inspired and copied from the TeX Live docker image

Operating system

The image is currently based on the Debian bookworm release.

For future release more operating systems will be supported.

Usage

FROM kinnekode/texlive-luatex:bookworm-slim  AS base

RUN apt-get update && apt-get upgrade -y

EXPOSE 3110

WORKDIR /app

COPY /bin/app .

USER $APP_UID:$APP_GID
CMD ["/app/app"]