FROM node:10.13-slim
COPY . /nodejs/Project/webmms/
WORKDIR /nodejs/Project/webmms
RUN npm install 

ENV TZ=utc-8

CMD ["node", "index.js"]
