We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a210bf0 commit c908d50Copy full SHA for c908d50
2 files changed
frontend/types/avatar.ts
make/data_process/Dockerfile
@@ -36,11 +36,11 @@ COPY model-assets/nltk_data /opt/models/nltk_data
36
WORKDIR /opt/backend
37
# Layer 1: install base dependencies
38
COPY backend/pyproject.toml /opt/backend/pyproject.toml
39
-RUN UV_HTTP_TIMEOUT=300 uv sync --no-cache-dir --extra data-process $(test -n "$MIRROR" && echo "-i $MIRROR") && \
+RUN uv sync --no-cache-dir --extra data-process $(test -n "$MIRROR" && echo "-i $MIRROR") && \
40
uv cache clean
41
# Layer 2: install sdk in link mode
42
COPY sdk /opt/sdk
43
-RUN UV_HTTP_TIMEOUT=300 uv pip install --no-cache-dir /opt/sdk $(test -n "$MIRROR" && echo "-i $MIRROR") && \
+RUN uv pip install --no-cache-dir /opt/sdk $(test -n "$MIRROR" && echo "-i $MIRROR") && \
44
45
# Layer 3: copy backend code
46
COPY backend /opt/backend
0 commit comments