remove latex
All checks were successful
Build images / build-images-amd64 (push) Successful in 10m17s
Build images / build-images-arm64 (push) Successful in 12m25s
Build images / update-images-manifests (push) Successful in 15s

This commit is contained in:
Maciej Lebiest 2024-09-14 21:40:33 +02:00
parent 3ac59ef2e8
commit b712623f28

View file

@ -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