Initial commit

This commit is contained in:
Rifqy Zacky Ariadhy
2019-01-02 18:39:53 +07:00
commit 1a000700e6
781 changed files with 95892 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:8-alpine
WORKDIR /app
COPY package.json /app
RUN yarn
COPY . /app
CMD npm run watch
EXPOSE 8080