first commit

This commit is contained in:
Ivan
2023-07-04 01:31:18 +03:00
commit c38cb8c2a5
55 changed files with 18273 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM node:18
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY package*.json ./
RUN npm install
# Bundle app source
COPY . .
EXPOSE 8081
CMD [ "node", "server.js" ]