From 15f27c8ffb4a0b9648d736fca7505f3aa5f12e95 Mon Sep 17 00:00:00 2001 From: BGV <25331232+bhargavgv@users.noreply.github.com> Date: Thu, 1 Oct 2020 18:31:09 -0400 Subject: [PATCH] Update and rename dockerfile to Dockerfile --- dockerfile => Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) rename dockerfile => Dockerfile (67%) diff --git a/dockerfile b/Dockerfile similarity index 67% rename from dockerfile rename to Dockerfile index 8d011ac..09f2566 100644 --- a/dockerfile +++ b/Dockerfile @@ -10,7 +10,8 @@ WORKDIR /app ADD ./* /app/ # Rename config & install modeule -RUN cp /app/config-example.json /app/config.json \ -&& npm install +RUN cp /app/config-example.json /app/config.json -CMD [ "node", "/app/index.js" ] \ No newline at end of file +RUN npm install + +CMD [ "node", "/app/index.js" ]