From 95a970a75db1221fac32a1c1f8441d41c4d3ddc7 Mon Sep 17 00:00:00 2001 From: Yehoshua Pesach Wallach Date: Sun, 24 Apr 2022 19:53:38 +0300 Subject: fontgen: install npm, lv_font_conv in Dockerfile --- docker/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'docker') 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/ -- cgit v1.2.3