Initial commit

This commit is contained in:
2024-01-01 21:40:47 +02:00
commit 5e82be1be4
11 changed files with 2134 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:20
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3232
CMD [ "node", "app.js" ]