feat(release): Setup automatic docker build

This commit is contained in:
Michel Fedde 2025-06-22 17:51:21 +02:00
parent a3c1bae6db
commit d5f5fe5f1a
8 changed files with 79 additions and 5 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"