git » alan.git » master » tree

[master] / Containerfile

# Minimal build/run image for ALAN.
FROM debian:bookworm-slim

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
    apt-get install -y --no-install-recommends \
        ca-certificates \
        make \
        texlive-latex-base \
        texlive-fonts-recommended \
        texlive-fonts-extra \
        texlive-fonts-extra-links \
        texlive-latex-extra \
        texlive-humanities \
        fonts-dejavu-core && \
    rm -rf /var/lib/apt/lists/*

WORKDIR /workspace

# Use the bundled ./python; no additional Python packages required.
CMD ["make"]