Files
md2gost/Dockerfile
T

17 lines
370 B
Docker
Raw Normal View History

2026-07-15 10:45:23 +03:00
FROM python:3.14-slim
COPY --from=ghcr.io/astral-sh/uv:0.9.21 /uv /uvx /bin/
RUN apt-get update && apt-get install -y --no-install-recommends \
texlive-xetex \
texlive-lang-cyrillic \
texlive-latex-extra \
fonts-liberation \
2026-07-15 10:45:23 +03:00
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN uv sync --frozen --no-dev
ENTRYPOINT ["uv", "run", "--no-dev", "md2gost"]