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"]