2024-03-13 02:33:19 +08:00
|
|
|
# ============================
|
|
|
|
# Prepare Node Environment
|
|
|
|
FROM hub.aiursoft.cn/node:21-alpine as node-env
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN node ./.github/readme-generate.js
|
|
|
|
|
|
|
|
# ============================
|
|
|
|
# Prepare Build Environment
|
|
|
|
FROM hub.aiursoft.cn/python:3.11 as python-env
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=node-env /app .
|
2024-06-02 14:15:16 +08:00
|
|
|
RUN pip install -r requirements.txt && rm node_modules -rf
|
2024-03-13 02:33:19 +08:00
|
|
|
RUN mkdocs build --strict
|
|
|
|
|
|
|
|
# ============================
|
|
|
|
# Prepare Runtime Environment
|
|
|
|
FROM hub.aiursoft.cn/aiursoft/static
|
|
|
|
COPY --from=python-env /app/site /data
|