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