feat(release): Adds docker support

This commit is contained in:
Michel Fedde 2025-06-22 17:51:21 +02:00
parent a3c1bae6db
commit 68368ab916
7 changed files with 79 additions and 3 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM node:20
COPY ./dist /app/dist
COPY ./node_modules /app/node_modules
COPY ./public /app/public
WORKDIR /app
CMD sh -c "node /app/dist/deploy.js && node /app/dist/main.js"