chore: dockerize

This commit is contained in:
2025-01-08 13:13:09 -05:00
parent 0af2045548
commit 3e6c1b9ddd
2 changed files with 15 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM node:alpine
COPY . .
RUN npm i
ENTRYPOINT ["npm", "start"]