feat: Added Dockerfile

This commit is contained in:
datalore 2024-02-08 15:22:21 +01:00
parent e62544bd03
commit 2a35bf61b2

8
Dockerfile Normal file
View File

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