Update Dockerfile to use apt-get for installs
All checks were successful
Build Docker Image / build (default) (push) Successful in 1m15s
Build Docker Image / build (python) (push) Successful in 1m17s

This commit is contained in:
2025-03-12 22:27:10 +01:00
parent 3f6277c1d7
commit 0b473cb110

View File

@@ -1,8 +1,8 @@
FROM harbor.pollinger.dev/dockerhub-mirror/texlive/texlive:latest AS default FROM harbor.pollinger.dev/dockerhub-mirror/texlive/texlive:latest AS default
RUN apt update RUN apt-get update
RUN apt install graphviz nodejs -y RUN apt-get install graphviz nodejs git-lfs -y
RUN luaotfload-tool --update RUN luaotfload-tool --update
FROM default AS python FROM default AS python
RUN apt update RUN apt-get update
RUN apt install python3 python3-pip -y RUN apt-get install python3 python3-pip -y