From 50ca72a422808f0cff81216a63d2c9e0df826e8b Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Thu, 17 Sep 2020 12:39:51 -0400 Subject: [PATCH 1/2] Added curl --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5aba002..6ae7431 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ MAINTAINER Piero Toffanin EXPOSE 3000 USER root +RUN apt-get update && apt-get install -y curl RUN curl --silent --location https://deb.nodesource.com/setup_10.x | bash - RUN apt-get install -y nodejs unzip p7zip-full && npm install -g nodemon && \ ln -s /code/SuperBuild/install/bin/entwine /usr/bin/entwine && \ From 527546bc9c68e371ead6444aeada13368583db97 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Thu, 17 Sep 2020 12:42:47 -0400 Subject: [PATCH 2/2] Install gpg-agent --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6ae7431..950fca6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Piero Toffanin EXPOSE 3000 USER root -RUN apt-get update && apt-get install -y curl +RUN apt-get update && apt-get install -y curl gpg-agent RUN curl --silent --location https://deb.nodesource.com/setup_10.x | bash - RUN apt-get install -y nodejs unzip p7zip-full && npm install -g nodemon && \ ln -s /code/SuperBuild/install/bin/entwine /usr/bin/entwine && \