File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,11 @@ COPY model-assets/nltk_data /opt/models/nltk_data
3636WORKDIR /opt/backend
3737# Layer 1: install base dependencies
3838COPY 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" ) && \
39+ RUN uv sync --no-cache-dir --extra data-process $(test -n "$MIRROR" && echo "-i $MIRROR" ) && \
4040 uv cache clean
4141# Layer 2: install sdk in link mode
4242COPY sdk /opt/sdk
43- RUN UV_HTTP_TIMEOUT=300 uv pip install --no-cache-dir /opt/sdk $(test -n "$MIRROR" && echo "-i $MIRROR" ) && \
43+ RUN uv pip install --no-cache-dir /opt/sdk $(test -n "$MIRROR" && echo "-i $MIRROR" ) && \
4444 uv cache clean
4545# Layer 3: copy backend code
4646COPY backend /opt/backend
You can’t perform that action at this time.
0 commit comments