-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
18 lines (14 loc) · 706 Bytes
/
Makefile
File metadata and controls
18 lines (14 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
PROFILE = texlive.profile
texlive: Dockerfile.texlive misc/texlive.profile
@docker build --build-arg profile=$(PROFILE) -t maclotsen/texlive:latest .
notify-send 'Makefile' 'Docker finished building TeX Live Latest' || true
with_gf: texlive Dockerfile.google-fonts
@docker build -f Dockerfile.google-fonts -t maclotsen/texlive:with-gf .
notify-send 'Makefile' 'Docker finished building Google Fonts' || true
tl_2022:
@docker build -f Dockerfile.tl-2022 -t maclotsen/texlive:2022 .
notify-send 'Makefile' 'Docker finished building TL 2022' || true
publish: texlive with_gf tl_2022
@docker push maclotsen/texlive:latest
@docker push maclotsen/texlive:with-gf
@docker push maclotsen/texlive:2022