mirror of
https://github.com/huggingface/lerobot.git
synced 2026-07-26 11:16:00 +00:00
fix(docker): drop VLABench asset download step
download_assets lives in scripts/download_assets.py (not VLABench.utils) and downloads from Google Drive via gdown, which is unreliable in CI. Our smoke test uses its own eval pipeline and does not need these assets. Made-with: Cursor
This commit is contained in:
@@ -24,9 +24,10 @@ FROM huggingface/lerobot-gpu:latest
|
|||||||
# Shallow-clone without submodule recursion (nested SSH-only submodules fail in CI).
|
# Shallow-clone without submodule recursion (nested SSH-only submodules fail in CI).
|
||||||
# Editable install (-e) because VLABench/utils/ has no __init__.py, so
|
# Editable install (-e) because VLABench/utils/ has no __init__.py, so
|
||||||
# find_packages() omits it from wheels; editable mode uses the source tree directly.
|
# find_packages() omits it from wheels; editable mode uses the source tree directly.
|
||||||
|
# Asset download (Google Drive via gdown) is skipped — unreliable in CI and not
|
||||||
|
# needed for our smoke test which uses its own eval pipeline.
|
||||||
RUN git clone --depth 1 https://github.com/OpenMOSS/VLABench.git ~/VLABench && \
|
RUN git clone --depth 1 https://github.com/OpenMOSS/VLABench.git ~/VLABench && \
|
||||||
uv pip install --no-cache -e ~/VLABench mujoco==3.2.2 dm-control==1.0.22 && \
|
uv pip install --no-cache -e ~/VLABench mujoco==3.2.2 dm-control==1.0.22
|
||||||
python -c "from VLABench.utils import download_assets; download_assets()"
|
|
||||||
|
|
||||||
# Overlay the PR's source code on top of the nightly image.
|
# Overlay the PR's source code on top of the nightly image.
|
||||||
COPY --chown=user_lerobot:user_lerobot . .
|
COPY --chown=user_lerobot:user_lerobot . .
|
||||||
|
|||||||
Reference in New Issue
Block a user