• [^] # Re: Pertinent

    Posté par (site web personnel) . En réponse au journal Écrivain libre. Évalué à 4. Dernière modification le 21 avril 2025 à 20:39.

    On peut se passer du Dockerfile sur debian :

    apt-get -y --no-install-recommends install \
     python3 python3-pip python3-venv python3-setuptools \
     python3-sqlalchemy texlive pandoc graphviz virtualenv \
     python3-magic sqlite3 texlive-xetex texlive-latex-extra \
     texlive-fonts-recommended texlive-lang-french graphviz lmodern 
    

    et pour avoir les « fontes de bases vectorielles » (ms)

    
    sed -i 's/^Components: main$/& contrib/' \
     /etc/apt/sources.list.d/debian.sources
    apt-get update
    apt-get install -y ttf-mscorefonts-installer fontconfig
    fc-cache -f -v
    

    Mais, oui, je m'excuse, j'ai un gros poil dans la main pour la partie install et j'ai fais l'hypothèse que le Dockerfile servait d'indication à comment faire sans lui.