FROM rceo-aios-public-tools-docmaker-base:latest # Avoid prompts from apt ENV DEBIAN_FRONTEND=noninteractive # Install full LaTeX (the heavy component that takes time) RUN apt-get update && apt-get install -y \ texlive-full \ && rm -rf /var/lib/apt/lists/* # Create a working directory WORKDIR /workspace # The entrypoint from the base image handles user creation