Compare commits
No commits in common. "5a3c14aeb3a680e9d8ff03a4b995f59746a88eab" and "177f481b7e3a6693a13240379c17308673e00e88" have entirely different histories.
5a3c14aeb3
...
177f481b7e
4
Makefile
4
Makefile
@ -1,11 +1,11 @@
|
|||||||
SRCS=$(shell find examples -type f -name "*.tex")
|
SRCS=$(shell find examples -type f -name "*.tex")
|
||||||
PDFS=$(shell echo $(SRCS:.tex=.pdf) | sed -e "s/examples\\///g")
|
PDFS=$(shell echo $(SRCS:.tex=.pdf) | sed -e "s/examples\\///g")
|
||||||
|
|
||||||
all: $(PDFS)
|
|
||||||
|
|
||||||
%.pdf: examples/%.tex
|
%.pdf: examples/%.tex
|
||||||
latexmk $<
|
latexmk $<
|
||||||
|
|
||||||
|
all: $(PDFS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
FROM alpine:3.19
|
FROM alpine:3.19
|
||||||
|
|
||||||
RUN apk update && apk upgrade
|
RUN apk update && apk upgrade
|
||||||
RUN apk add make texlive texmf-dist-pictures
|
RUN apk add texlive
|
||||||
|
RUN apk add texmf-dist-pictures
|
||||||
|
|||||||
@ -3,6 +3,7 @@ FROM archlinux:latest
|
|||||||
RUN pacman-key --init
|
RUN pacman-key --init
|
||||||
RUN pacman-key --populate archlinux
|
RUN pacman-key --populate archlinux
|
||||||
RUN pacman -Sy archlinux-keyring --noconfirm && pacman -Su --noconfirm
|
RUN pacman -Sy archlinux-keyring --noconfirm && pacman -Su --noconfirm
|
||||||
|
# RUN pacman-key --refresh-keys
|
||||||
|
|
||||||
RUN pacman -Syu --noconfirm
|
RUN pacman -Syu --noconfirm
|
||||||
RUN pacman -S make perl texlive texlive-binextra texlive-pictures --noconfirm
|
RUN pacman -S perl texlive texlive-binextra texlive-pictures --noconfirm
|
||||||
|
|||||||
@ -3,4 +3,5 @@ FROM ubuntu:22.04
|
|||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
RUN apt update -y && apt upgrade -y
|
RUN apt update -y && apt upgrade -y
|
||||||
RUN apt install make texlive latexmk texlive-pictures -y
|
RUN apt install neovim git -y
|
||||||
|
RUN apt install texlive latexmk texlive-pictures -y
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user