Initial commit

This commit is contained in:
2026-02-09 21:24:45 +01:00
commit b5d7d53bdb
5 changed files with 351 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:18
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
EXPOSE 3030
CMD ["node","server.js"]