feat: update Dockerfile to clone frontend themes into build directory and add legacy peer dependencies

This commit is contained in:
Lan
2026-01-24 11:03:33 +08:00
parent 8192c1215c
commit 753353e857
+5 -5
View File
@@ -6,15 +6,15 @@ RUN apk add --no-cache git python3 make g++
WORKDIR /build WORKDIR /build
# 克隆并构建 2024 主题 # 克隆并构建 2024 主题
RUN git clone --depth 1 https://github.com/vastsa/FileCodeBoxFronted.git fronted-2024 && \ RUN git clone --depth 1 https://github.com/vastsa/FileCodeBoxFronted.git /build/fronted-2024 && \
cd fronted-2024 && \ cd /build/fronted-2024 && \
npm install && \ npm install && \
npm run build npm run build
# 克隆并构建 2023 主题 # 克隆并构建 2023 主题
RUN git clone --depth 1 https://github.com/vastsa/FileCodeBoxFronted2023.git fronted-2023 && \ RUN git clone --depth 1 https://github.com/vastsa/FileCodeBoxFronted2023.git /build/fronted-2023 && \
cd fronted-2023 && \ cd /build/fronted-2023 && \
npm install && \ npm install --legacy-peer-deps && \
npm run build npm run build
# 第二阶段:构建最终镜像 # 第二阶段:构建最终镜像