update API socket

This commit is contained in:
2020-12-09 08:58:41 +07:00
parent c1ccf51f1e
commit bc8812ebed
9 changed files with 1040 additions and 0 deletions

7
API/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:10
WORKDIR /app
COPY ./package.json /app
RUN npm install
COPY . /app
CMD npm start
EXPOSE 4004