summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYehoshua Pesach Wallach <yehoshuapw@gmail.com>2022-04-24 19:53:38 +0300
committerJF <JF002@users.noreply.github.com>2022-05-10 22:20:02 +0200
commit95a970a75db1221fac32a1c1f8441d41c4d3ddc7 (patch)
tree55a7780422e6cc24ec882ec0a43f38eeb289596a
parent2ccf88c03cc82168894a4a5b184e64a034d86b60 (diff)
fontgen: install npm, lv_font_conv in Dockerfile
-rw-r--r--docker/Dockerfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 0a4f69f0..a1f48848 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -13,19 +13,23 @@ RUN apt-get update -qq \
python3-pip \
tar \
unzip \
- wget \
+ wget \
+ curl \
# aarch64 packages
libffi-dev \
libssl-dev \
python3-dev \
python \
git \
+ && curl -sL https://deb.nodesource.com/setup_12.x | bash - \
+ && apt-get install -y nodejs \
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*;
# Git needed for PROJECT_GIT_COMMIT_HASH variable setting
RUN pip3 install adafruit-nrfutil
RUN pip3 install -Iv cryptography==3.3
+RUN npm i lv_font_conv@1.5.2 -g
# build.sh knows how to compile
COPY build.sh /opt/