mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
Add Server CE development environment GitOrigin-RevId: c91d9eb58b1dbc3be24646e77033cd3242e707f0
9 lines
331 B
Docker
9 lines
331 B
Docker
FROM debian:testing-slim
|
|
|
|
RUN apt-get update
|
|
RUN apt-cache depends texlive-full | grep "Depends: " | grep -v -- "-doc" | grep -v -- "-lang-" | sed 's/Depends: //' | xargs apt-get install -y --no-install-recommends
|
|
RUN apt-get install -y --no-install-recommends fontconfig inkscape pandoc python3-pygments
|
|
|
|
RUN useradd tex
|
|
USER tex
|