From 10217fb04c968e79a312645ebf38ea1ddb3b7b0e Mon Sep 17 00:00:00 2001 From: Chris Fenner Date: Fri, 8 Dec 2023 19:59:45 -0800 Subject: [PATCH] create otf dir --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5140da0..5442ffc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,8 @@ RUN wget https://github.com/kaienfr/Font/raw/master/font/ARIALUNI.TTF -P /usr/sh fc-cache -f # Install Source Sans Pro, Source Serif Pro, and Source Code Pro -RUN wget https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip && \ +RUN mkdir /usr/share/fonts/OTF && \ + wget https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip && \ unzip 1.050R-it.zip && \ cp source-code-pro-2.030R-ro-1.050R-it/OTF/*.otf /usr/share/fonts/OTF/ && \ wget https://github.com/adobe-fonts/source-serif-pro/archive/2.000R.zip && \