Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -11,7 +11,7 @@ RUN apt install chromium -y
|
|
11 |
WORKDIR /Yunzai
|
12 |
|
13 |
# 将项目文件复制到容器中
|
14 |
-
COPY
|
15 |
|
16 |
# 进入目录
|
17 |
RUN cd /Yunzai
|
@@ -25,6 +25,8 @@ RUN git clone --depth 1 https://github.com/ap-plugin/ap-plugin.git ./plugins/ap-
|
|
25 |
RUN git clone --depth 1 https://github.com/Ctrlcvs/xiaoyao-cvs-plugin.git ./plugins/xiaoyao-cvs-plugin/
|
26 |
RUN git clone --depth=1 https://github.com/yeyang52/yenai-plugin.git ./plugins/yenai-plugin
|
27 |
|
|
|
|
|
28 |
|
29 |
# 安装依赖
|
30 |
RUN npm install -g pnpm
|
|
|
11 |
WORKDIR /Yunzai
|
12 |
|
13 |
# 将项目文件复制到容器中
|
14 |
+
COPY . /Yunzai
|
15 |
|
16 |
# 进入目录
|
17 |
RUN cd /Yunzai
|
|
|
25 |
RUN git clone --depth 1 https://github.com/Ctrlcvs/xiaoyao-cvs-plugin.git ./plugins/xiaoyao-cvs-plugin/
|
26 |
RUN git clone --depth=1 https://github.com/yeyang52/yenai-plugin.git ./plugins/yenai-plugin
|
27 |
|
28 |
+
# 拷贝 Guoba 配置文件
|
29 |
+
COPY ./application.yaml ./plugin/Guoba-Plugin/config/application.yaml
|
30 |
|
31 |
# 安装依赖
|
32 |
RUN npm install -g pnpm
|