From 806d3a270a69a974d6ef1178d0200f5f61847725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phillip=20K=C3=BChne?= Date: Fri, 1 Nov 2019 19:18:25 +0100 Subject: [PATCH] Add actual app to Dockerfile.... --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 920909f..8c44be4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,9 @@ RUN npm install # If you are building your code for production # RUN npm ci --only=production +# Bundle app source +COPY . . + EXPOSE 3000 CMD [ "node", "server.js" ] \ No newline at end of file