feat(): restructure

This commit is contained in:
bi
2022-01-08 20:02:01 +07:00
parent e8bc7e463a
commit f6b4257ac7
176 changed files with 26 additions and 0 deletions

8
dev.dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:16.13.0
WORKDIR /app
COPY ./app/package.json /app
RUN npm install
CMD npm start
EXPOSE 3000