From b712623f289cb3ad5e25eab129c871d1244e5eab Mon Sep 17 00:00:00 2001 From: Maciej Lebiest Date: Sat, 14 Sep 2024 21:40:33 +0200 Subject: [PATCH] remove latex --- Containerfile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Containerfile b/Containerfile index 91850bf..a91ec11 100644 --- a/Containerfile +++ b/Containerfile @@ -6,7 +6,6 @@ ENV PATH=/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin ENV PKGS_DNF="python \ nodejs \ latex \ - xelatex \ tini \ bind-utils \ iputils \ @@ -17,7 +16,7 @@ ENV PKGS_DNF="python \ wget \ rsync" -ENV PKGS_DNF_BUILD="cargo python3-devel" +#ENV PKGS_DNF_BUILD="cargo python3-devel systemd" ENV PKGS_PIP="jupyter \ bash_kernel \ @@ -42,7 +41,7 @@ ENV PKGS_NPM="bash-language-server \ vscode-json-languageserver-bin \ yaml-language-server" -RUN dnf5 install -y ${PKGS_DNF} ${PKGS_DNF_BUILD} && \ +RUN dnf5 install -y ${PKGS_DNF} && \ mkdir /jupyter && \ cd /jupyter && \ npm install ${PKGS_NPM} && \ @@ -52,11 +51,6 @@ RUN dnf5 install -y ${PKGS_DNF} ${PKGS_DNF_BUILD} && \ jt -t monokai -f firacode && \ python -m bash_kernel.install && \ python -m mariadb_kernel.install && \ - cargo install --git https://github.com/latex-lsp/texlab --locked && \ - mv /root/.cargo/bin/texlab /usr/bin/ && \ - rpm -e --nodeps systemd && \ - rm -rf /root/.cache/* /root/.cargo && \ - dnf5 remove -y ${PKGS_DNF_BUILD} && \ dnf5 autoremove -y && \ dnf5 clean all