add dockerfile

This commit is contained in:
1e99 2025-07-22 16:11:40 +02:00
parent cd054eb618
commit f33ac57b63

6
Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM docker.io/node:alpine
WORKDIR /src
COPY . ./
RUN npm install
CMD [ "node", "." ]