From ae1ad9b28aec3e3aee116961eb7be98892d7aa76 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Wed, 18 Feb 2015 09:34:55 -0800 Subject: [PATCH] Prevent warning during npm install --- Dockerfile | 1 + package.json | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0fa4b09..4bbce0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -62,6 +62,7 @@ ENV PHANTOMJS_BIN /usr/local/bin/phantomjs VOLUME ["/opt/phantom-talk"] WORKDIR /opt/phantom-talk COPY package.json /opt/phantom-talk/package.json +COPY README.md /opt/phantom-talk/README.md RUN ["npm", "install"] EXPOSE 8000 EXPOSE 8001 diff --git a/package.json b/package.json index da35761..35e0b04 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,10 @@ "test": "grunt test" }, "author": "Buddy Sandidge", + "repository" : { + "type" : "git", + "url" : "https://github.com/xbudex/phantom-talk.git" + }, "license": "ISC", "devDependencies": { "bower": "^1.3.12",