From cd9de704dbbed26a420f0cb83d381a21654e8d8c Mon Sep 17 00:00:00 2001 From: tdurieux Date: Fri, 13 Aug 2021 14:05:48 +0200 Subject: [PATCH] fix: update dockerfile to the new architecture --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 71a9afd..43a5cfe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,9 +10,9 @@ RUN npm install -g nodemon COPY package*.json . RUN npm install -RUN npm install forever -COPY public . -COPY index.js . -COPY utils . -CMD [ "node", "index.js" ] \ No newline at end of file +COPY src . +COPY index.ts . +COPY public . + +CMD [ "nodemon", "--transpile-only", "index.ts" ] \ No newline at end of file