Replace Iosevka sbruder with Iosevka Nerd Font

master
Simon Bruder 2020-09-12 16:26:41 +02:00
parent 329f337446
commit 52d17aa27f
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 9 additions and 6 deletions

View File

@ -1,3 +1,11 @@
FROM alpine as fonts
RUN wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Iosevka.zip \
&& mkdir iosevka \
&& unzip -d iosevka Iosevka.zip \
&& rm Iosevka.zip iosevka/Iosevka\ Term\ * \
&& chown -R 1000:1000 iosevka
FROM debian:testing
RUN echo 'deb http://ftp-stud.hs-esslingen.de/pub/Mirrors/debian-multimedia/ testing main' > /etc/apt/sources.list.d/deb-multimedia.list \
@ -138,9 +146,4 @@ RUN pip3 install -t /usr/local/lib/vapoursynth-scripts/ --no-cache-dir \
RUN adduser --disabled-password --gecos '' vapoursynth
USER vapoursynth
RUN mkdir /home/vapoursynth/.fonts/ \
&& wget -nv -P /home/vapoursynth/.fonts/ \
https://s3.sbruder.de/cdn/fonts/Iosevka/iosevka-sbruder/ttf/iosevka-sbruder-bold.ttf \
https://s3.sbruder.de/cdn/fonts/Iosevka/iosevka-sbruder/ttf/iosevka-sbruder-bolditalic.ttf \
https://s3.sbruder.de/cdn/fonts/Iosevka/iosevka-sbruder/ttf/iosevka-sbruder-italic.ttf \
https://s3.sbruder.de/cdn/fonts/Iosevka/iosevka-sbruder/ttf/iosevka-sbruder-regular.ttf
COPY --from=fonts /iosevka /home/vapoursynth/.fonts