st / Dockerfile
fuliai's picture
Update Dockerfile
6f919e1 verified
raw
history blame
491 Bytes
# 使用Node.js镜像作为基础镜像
FROM node:latest
# 设置工作目录
WORKDIR /app
# 安装git并创建用户
RUN apt-get update && apt-get install -y git && chown -R node:node /app
# 切换到新用户
USER node
# 克隆SillyTavern仓库
RUN git clone https://github.com/SillyTavern/SillyTavern -b release
# 切换工作目录到克隆的仓库中
WORKDIR /app/SillyTavern
# 向start.sh脚本添加执行权限
RUN chmod +x start.sh
# 运行start.sh脚本
CMD ["./start.sh"]