FROM node:lts-alpine3.19 RUN apk add git curl bash wget davfs2 fuse WORKDIR /tavern RUN git clone https://github.com/SillyTavern/SillyTavern -b staging . RUN npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force RUN chmod -R 777 /tavern EXPOSE 7860 # --dataRoot /dav CMD node server.js --port 7860 --whitelist false --listen