Add Dockerfile.

This commit is contained in:
2025-10-28 17:57:58 +01:00
parent bb8accace2
commit 0819a47836

7
Dockerfile Normal file
View File

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