silly16 / Dockerfile
jjlineeee's picture
Update Dockerfile
64f93b1 verified
raw
history blame contribute delete
167 Bytes
FROM node:18-alpine
WORKDIR /app
RUN apk add --no-cache git
RUN git clone https://github.com/fuwei99/SillyTavern-Docker.git .
RUN npm install
CMD ["node", "server.js"]