Add Dockerfile

This commit is contained in:
2025-09-05 01:17:25 -04:00
parent 9149d0ac20
commit e69d404e2e
10 changed files with 388 additions and 10 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:20
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY ./dist .
EXPOSE 5555
CMD ["node", "src/index.js"]