From ebb0058ef7ade935dfb2031858e5c0b65b207cb7 Mon Sep 17 00:00:00 2001 From: Rob Wong Date: Tue, 22 Aug 2023 10:47:36 -0600 Subject: [PATCH] fix: install make --- demo-iota/js/deno/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo-iota/js/deno/Dockerfile b/demo-iota/js/deno/Dockerfile index 751817f..f5a2d95 100644 --- a/demo-iota/js/deno/Dockerfile +++ b/demo-iota/js/deno/Dockerfile @@ -5,7 +5,7 @@ EXPOSE 3000 # install curl, so we can install nvm, so we can install node ENV PATH="${PATH}:/usr/bin" ENV NODE_VERSION=20.4.0 -RUN apt update; apt install -y curl; apt install -y python3; +RUN apt update; apt install -y curl; apt install -y python3; apt-get install make; RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bash ENV NVM_DIR=/root/.nvm