Merge branch 'devel' into main

This commit is contained in:
2022-09-04 04:22:55 -03:00
116 changed files with 27771 additions and 19001 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 5000
ENTRYPOINT ["npm", "start"]