first commit

This commit is contained in:
2025-01-23 01:12:17 +03:00
parent 651afd6e36
commit 1b09267e47
27 changed files with 4274 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:22-bullseye
WORKDIR /opt/mcserver
COPY . .
RUN npm i
EXPOSE 3000
ENTRYPOINT ["node", "./src/index.js"]