Skip to content

Commit 2e5e3b9

Browse files
authored
Update Dockerfile
1 parent a94c003 commit 2e5e3b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ============================
22
# Prepare lint Environment
3-
FROM hub.aiursoft.cn/node:21-alpine as lint-env
3+
FROM node:21-alpine as lint-env
44
WORKDIR /app
55
COPY . .
66
RUN npm install --loglevel verbose
@@ -9,7 +9,7 @@ RUN npm run lint
99

1010
# ============================
1111
# Prepare Build Environment
12-
FROM hub.aiursoft.cn/python:3.11 as python-env
12+
FROM python:3.11 as python-env
1313
WORKDIR /app
1414
COPY --from=lint-env /app .
1515
RUN apt-get update && apt-get install -y weasyprint fonts-noto-cjk wget unzip
@@ -18,7 +18,7 @@ RUN mkdocs build
1818

1919
# ============================
2020
# Prepare Runtime Environment
21-
FROM hub.aiursoft.cn/aiursoft/static
21+
FROM aiursoft/static
2222
COPY --from=python-env /app/site /data
2323

2424
LABEL org.opencontainers.image.source="https://github.com/Anduin2017/HowToCook"

0 commit comments

Comments
 (0)