first commit

This commit is contained in:
Ваше Имя
2025-02-18 13:00:27 +05:00
commit 6225620ad6
159 changed files with 3196 additions and 0 deletions

21
Dockerfile Executable file
View File

@ -0,0 +1,21 @@
FROM node:14-slim
#
# create app directory
WORKDIR /usr/src/app
#
# install app dependencies
COPY package*.json ./
RUN npm install
#
# copy app
COPY . .
ENV MAX_HTTP_BUFFER_SIZE_MB=1
ENTRYPOINT [ "node", "server.js" ]
EXPOSE 80
CMD [ "80" ]