update base image
Some checks failed
Some checks failed
This commit is contained in:
@@ -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
|
||||||
|
|||||||
15
Dockerfile
15
Dockerfile
@@ -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
|
||||||
Reference in New Issue
Block a user