File size: 292 Bytes
457ba1a 20a5c41 457ba1a 20a5c41 457ba1a | 1 2 3 4 5 6 7 8 9 10 | FROM node:20-alpine
WORKDIR /app
RUN apk add --no-cache git bash
RUN git clone https://github.com/SillyTavern/SillyTavern.git . && rm -rf .git
RUN npm install --production
COPY start.sh /start.sh
RUN chmod +x /start.sh
EXPOSE 7860
ENV NODE_OPTIONS="--max-old-space-size=512"
CMD ["/start.sh"] |