File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 33
44PYTEST_ARGS ?=
55
6+ pull :
7+ bash docker/pull_image.sh python:3.12-slim
8+ bash docker/pull_image.sh node:20-slim
9+ bash docker/pull_image.sh node:20-alpine
10+ bash docker/pull_image.sh quay.io/coreos/etcd:v3.5.5
11+ bash docker/pull_image.sh milvusdb/milvus:v2.5.6
12+ bash docker/pull_image.sh neo4j:5.26
13+ bash docker/pull_image.sh minio/minio:RELEASE.2023-03-20T20-16-18Z
14+ bash docker/pull_image.sh ghcr.io/astral-sh/uv:0.7.2
15+
616start :
717 @if [ ! -f .env ]; then \
818 echo " Error: .env file not found. Please create it from .env.template" ; \
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ ENV HTTP_PROXY=$HTTP_PROXY \
5252
5353# 如果网络还是不好,可以在后面添加 --index-url https://pypi.tuna.tsinghua.edu.cn/simple
5454RUN --mount=type=cache,target=/root/.cache/uv \
55- uv sync --no-dev
55+ uv sync --no-dev --index-url https://pypi.tuna.tsinghua.edu.cn/simple
5656
5757# 激活虚拟环境并添加到PATH
5858ENV PATH="/app/.venv/bin:$PATH"
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ COPY ./web/package*.json ./
1919COPY ./web/pnpm-lock.yaml* ./
2020
2121# 安装依赖
22- RUN pnpm install
22+ RUN pnpm install --registry=https://registry.npmmirror.com
2323
2424# 复制源代码
2525COPY ./web .
You can’t perform that action at this time.
0 commit comments