update base image
Some checks failed
Build Docker Image / build (full-python) (push) Has been cancelled
Build Docker Image / build (python) (push) Has been cancelled
Build Docker Image / build (full) (push) Has been cancelled
Build Docker Image / build (default) (push) Has been cancelled

This commit is contained in:
2025-03-15 00:34:46 +01:00
parent 0b473cb110
commit 2b03fe7b80
2 changed files with 11 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ jobs:
build: build:
strategy: strategy:
matrix: matrix:
flavor: [default, python] flavor: [default, python, full, full-python]
runs-on: docker-builder runs-on: docker-builder
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

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