This commit is contained in:
Richard
2026-03-26 18:43:01 +01:00
commit 9616a8236b
25 changed files with 2773 additions and 0 deletions

7
maps/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node
WORKDIR /app
ADD package.json* .
RUN npm install
ADD *.js /app
VOLUME /maps
ENTRYPOINT ["./maps.js"]