99i commited on
Commit
695168f
·
verified ·
1 Parent(s): c5575d6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -9,6 +9,9 @@ FROM node:22-alpine AS frontend-builder
9
 
10
  WORKDIR /build
11
 
 
 
 
12
  # 克隆项目(浅克隆,仅获取最近提交,加快构建速度)
13
  RUN git clone --depth 1 https://github.com/q8625332/ljq-MuMuAINovel.git /build/src
14
 
 
9
 
10
  WORKDIR /build
11
 
12
+ # 安装 git(alpine 用 apk)
13
+ RUN apk add --no-cache git
14
+
15
  # 克隆项目(浅克隆,仅获取最近提交,加快构建速度)
16
  RUN git clone --depth 1 https://github.com/q8625332/ljq-MuMuAINovel.git /build/src
17