Fix libraries

This commit is contained in:
2026-04-22 17:41:23 +02:00
parent c48ac0d394
commit 7222852a27
14 changed files with 1306 additions and 5 deletions

View File

@@ -0,0 +1,4 @@
FROM alpine:3.19
RUN apk update && apk upgrade
RUN apk add make texlive texmf-dist-pictures

View File

@@ -0,0 +1,8 @@
FROM archlinux:latest
RUN pacman-key --init
RUN pacman-key --populate archlinux
RUN pacman -Sy archlinux-keyring --noconfirm && pacman -Su --noconfirm
RUN pacman -Syu --noconfirm
RUN pacman -S make perl texlive texlive-binextra texlive-pictures --noconfirm

View File

@@ -0,0 +1,6 @@
FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt update -y && apt upgrade -y
RUN apt install make texlive latexmk texlive-pictures -y