fix: update dockerfile to the new architecture

This commit is contained in:
tdurieux
2021-08-13 14:05:48 +02:00
parent 17c28c692d
commit cd9de704db

View File

@@ -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" ]
COPY src .
COPY index.ts .
COPY public .
CMD [ "nodemon", "--transpile-only", "index.ts" ]