add dockerfile for komodo

This commit is contained in:
Nathan
2025-06-13 23:05:58 -07:00
committed by GitHub
parent d3e0e34989
commit fb0953c50c

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:22
USER node
WORKDIR /app
RUN git clone https://github.com/enstrayed/enstrayedapi .
RUN npm install
ENTRYPOINT [ "node", "index.js" ]