Add Dockerfile for containerized application setup

This commit is contained in:
2025-10-29 15:56:16 +01:00
parent 83fcb68955
commit e389aae51f

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:22
COPY . .
RUN npm i
CMD [ "npm", "run", "start" ]