Fix libraries
This commit is contained in:
4
lib/latex-common/dockerfiles/Dockerfile.alpine
Normal file
4
lib/latex-common/dockerfiles/Dockerfile.alpine
Normal file
@@ -0,0 +1,4 @@
|
||||
FROM alpine:3.19
|
||||
|
||||
RUN apk update && apk upgrade
|
||||
RUN apk add make texlive texmf-dist-pictures
|
||||
8
lib/latex-common/dockerfiles/Dockerfile.archlinux
Normal file
8
lib/latex-common/dockerfiles/Dockerfile.archlinux
Normal 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
|
||||
6
lib/latex-common/dockerfiles/Dockerfile.ubuntu
Normal file
6
lib/latex-common/dockerfiles/Dockerfile.ubuntu
Normal 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
|
||||
Reference in New Issue
Block a user