update base image
Some checks failed
Some checks failed
This commit is contained in:
@@ -12,7 +12,7 @@ jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
flavor: [default, python]
|
||||
flavor: [default, python, full, full-python]
|
||||
runs-on: docker-builder
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
15
Dockerfile
15
Dockerfile
@@ -1,8 +1,13 @@
|
||||
FROM harbor.pollinger.dev/dockerhub-mirror/texlive/texlive:latest AS default
|
||||
RUN apt-get update
|
||||
RUN apt-get install graphviz nodejs git-lfs -y
|
||||
FROM harbor.pollinger.dev/dockerhub-mirror/alpine:latest AS default
|
||||
RUN apk add --update texlive texlive-luatex
|
||||
RUN apk add --update graphviz nodejs git-lfs
|
||||
RUN luaotfload-tool --update
|
||||
|
||||
FROM default AS python
|
||||
RUN apt-get update
|
||||
RUN apt-get install python3 python3-pip -y
|
||||
RUN apk add --update python3 py3-pip
|
||||
|
||||
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