change build stages
Some checks failed
Build Docker Image / build (python) (push) Successful in 34s
Build Docker Image / build (default) (push) Successful in 35s
Build Docker Image / build (full-python) (push) Failing after 6m46s
Build Docker Image / build (full) (push) Failing after 14m48s

This commit is contained in:
2025-03-15 00:38:30 +01:00
parent 2b03fe7b80
commit d4e19e204a

View File

@@ -1,6 +1,8 @@
FROM harbor.pollinger.dev/dockerhub-mirror/alpine:latest AS default FROM harbor.pollinger.dev/dockerhub-mirror/alpine:latest AS base
RUN apk add --update texlive texlive-luatex
RUN apk add --update graphviz nodejs git-lfs RUN apk add --update graphviz nodejs git-lfs
FROM base AS default
RUN apk add --update texlive texlive-luatex
RUN luaotfload-tool --update RUN luaotfload-tool --update
FROM default AS python FROM default AS python
@@ -8,6 +10,7 @@ RUN apk add --update python3 py3-pip
FROM default AS full FROM default AS full
RUN apk add --update texlive-full RUN apk add --update texlive-full
RUN luaotfload-tool --update
FROM full AS full-python FROM full AS full-python
RUN apk add --update python3 py3-pip RUN apk add --update python3 py3-pip