FROM node:current

COPY . /app 
WORKDIR /app 
EXPOSE 8080

RUN npm install;
RUN mkdir ./.cache
RUN chmod -R 777 ./.cache
CMD node index.js