koishi / Dockerfile
knbn's picture
Create Dockerfile
a57b4ee verified
raw
history blame contribute delete
377 Bytes
FROM node:lts-alpine
RUN apk update
# 安装要用到的工具
RUN apk add -f git wget
# 克隆koishi-bp
RUN git clone https://github.com/xhzngm/boilerplate.git
# 安装依赖
RUN cd /boilerplate; corepack enable; yarn install
# 修改权限防止报错
RUN chmod -R 777 /boilerplate
# 设置工作目录
WORKDIR "/boilerplate"
# 设置启动命令
CMD ["yarn", "start"]