| FROM node:20-alpine | |
| RUN apk add --no-cache git bash | |
| WORKDIR /app | |
| RUN git clone https://github.com/SillyTavern/SillyTavern.git . | |
| RUN npm install --production | |
| EXPOSE 7860 | |
| CMD ["node", "server.js", "--port", "7860", "--listen", "true", "--whitelistMode", "false"] |