From 3558168a0705cc329344f57854bc2ca37c5ced9b Mon Sep 17 00:00:00 2001 From: Terra Brown Date: Tue, 21 Apr 2020 20:19:45 -0400 Subject: [PATCH 1/2] dockerfile --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bfb7c0d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM rethinkdb + +# just add npm and recli +RUN apt update && apt install -y npm +RUN npm i -g recli From f3284efd6c061b99c97a72c33664495ee7052a46 Mon Sep 17 00:00:00 2001 From: Terra Brown Date: Tue, 21 Apr 2020 20:29:58 -0400 Subject: [PATCH 2/2] use git in dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bfb7c0d..2d67851 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM rethinkdb # just add npm and recli -RUN apt update && apt install -y npm -RUN npm i -g recli +RUN apt update && apt install -y npm git +RUN npm i -g git://github.com/superloach/recli