silly88 / Dockerfile
jjlineeee's picture
Create Dockerfile
c6fca09 verified
Raw
History Blame Contribute Delete
194 Bytes
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"]