Add dockerfiles and README.md
This commit is contained in:
5
dockerfiles/Dockerfile.alpine
Normal file
5
dockerfiles/Dockerfile.alpine
Normal file
@@ -0,0 +1,5 @@
|
||||
FROM alpine:3.19
|
||||
|
||||
RUN apk update && apk upgrade
|
||||
RUN apk add texlive
|
||||
RUN apk add texmf-dist-pictures
|
||||
9
dockerfiles/Dockerfile.archlinux
Normal file
9
dockerfiles/Dockerfile.archlinux
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM archlinux:latest
|
||||
|
||||
RUN pacman-key --init
|
||||
RUN pacman-key --populate archlinux
|
||||
RUN pacman -Sy archlinux-keyring --noconfirm && pacman -Su --noconfirm
|
||||
# RUN pacman-key --refresh-keys
|
||||
|
||||
RUN pacman -Syu --noconfirm
|
||||
RUN pacman -S perl texlive texlive-binextra texlive-pictures --noconfirm
|
||||
7
dockerfiles/Dockerfile.ubuntu
Normal file
7
dockerfiles/Dockerfile.ubuntu
Normal file
@@ -0,0 +1,7 @@
|
||||
FROM ubuntu:22.04
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt update -y && apt upgrade -y
|
||||
RUN apt install neovim git -y
|
||||
RUN apt install texlive latexmk texlive-pictures -y
|
||||
Reference in New Issue
Block a user