From b06275b65a94b1a255421184c194e024ea28dda6 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Thu, 19 Apr 2018 18:58:43 -0400 Subject: [PATCH] add parrot.live Signed-off-by: Jess Frazelle --- parrot.live/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 parrot.live/Dockerfile diff --git a/parrot.live/Dockerfile b/parrot.live/Dockerfile new file mode 100644 index 0000000..ed104a0 --- /dev/null +++ b/parrot.live/Dockerfile @@ -0,0 +1,7 @@ +FROM node:alpine + +RUN apk add --no-cache git +RUN git clone --branch master --depth 1 https://github.com/hugomd/parrot.live.git /src +WORKDIR /src +RUN npm install +CMD ["node","index.js"]