Fix font path
This commit is contained in:
parent
1d175ef508
commit
c9c83d7340
3 changed files with 4 additions and 6 deletions
|
@ -1,8 +1,8 @@
|
||||||
FROM archlinux
|
FROM archlinux
|
||||||
|
|
||||||
RUN pacman -Syu --noconfirm texlive-most texlive-lang texlive-bibtexextra texlive-fontsextra biber
|
RUN pacman -Syu --noconfirm texlive-most texlive-lang texlive-bibtexextra texlive-fontsextra biber
|
||||||
RUN mkdir -p /usr/locale/share/fonts/
|
RUN mkdir -p /usr/local/share/fonts/
|
||||||
RUN curl -Lo /usr/locale/share/fonts/fira-math.otf https://github.com/firamath/firamath/releases/download/v0.3.4/FiraMath-Regular.otf
|
RUN curl -Lo /usr/local/share/fonts/fira-math.otf https://github.com/firamath/firamath/releases/download/v0.3.4/FiraMath-Regular.otf
|
||||||
RUN fc-cache
|
RUN fc-cache
|
||||||
|
|
||||||
COPY entrypoint.sh /root/
|
COPY entrypoint.sh /root/
|
||||||
|
|
|
@ -2,8 +2,6 @@ name: "Latexmk"
|
||||||
description: "Run latexmk with most latex packages"
|
description: "Run latexmk with most latex packages"
|
||||||
author: edpibu
|
author: edpibu
|
||||||
inputs:
|
inputs:
|
||||||
root_file:
|
|
||||||
description: File to compile
|
|
||||||
working_directory:
|
working_directory:
|
||||||
description: Working directory
|
description: Working directory
|
||||||
runs:
|
runs:
|
||||||
|
@ -11,7 +9,6 @@ runs:
|
||||||
image: "Dockerfile"
|
image: "Dockerfile"
|
||||||
args:
|
args:
|
||||||
- ${{ inputs.working_directory }}
|
- ${{ inputs.working_directory }}
|
||||||
- ${{ inputs.root_file }}
|
|
||||||
branding:
|
branding:
|
||||||
icon: book
|
icon: book
|
||||||
color: blue
|
color: blue
|
||||||
|
|
|
@ -3,4 +3,5 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
cd $1
|
cd $1
|
||||||
latexmk $2
|
latexmk
|
||||||
|
latexmk -c
|
||||||
|
|
Loading…
Reference in a new issue