Initial commit

This commit is contained in:
dwd-projects
2025-06-09 07:21:58 +00:00
commit 8c3382e438
18 changed files with 17711 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . .
EXPOSE 2008
ENTRYPOINT ["npm", "run"]
CMD ["dev"]