Adds dockerfile

This commit is contained in:
Michel Fedde 2025-08-16 16:28:39 +02:00
parent ae19b7e6d9
commit acfd967aee

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/main.js"