Michael Rabinovich commited on
Commit
99e7deb
·
1 Parent(s): 79200be

Install OpenSCAD for baseline jobs

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -33,6 +33,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
33
  && apt-get update && apt-get install -y --no-install-recommends \
34
  python3.12 python3.12-venv python3.12-dev \
35
  git ca-certificates \
 
36
  libglib2.0-0 libsm6 libxext6 libgomp1 libfontconfig1 \
37
  libgl1 libegl1 libegl-mesa0 libxrender1 \
38
  && rm -rf /var/lib/apt/lists/* \
@@ -51,7 +52,7 @@ RUN python -m venv "$VIRTUAL_ENV" \
51
  # rebuild picks up the latest evaluator dependencies (including Open3D for
52
  # alignment). Lock to a commit SHA at the v1 release for reproducible scores
53
  # (see space-setup/post-gt-swap.md Stage F).
54
- ARG CADGENBENCH_SHA=f284fbd
55
  RUN python -m pip install --no-cache-dir \
56
  "cadgenbench @ git+https://github.com/huggingface/cadgenbench.git@${CADGENBENCH_SHA}"
57
 
 
33
  && apt-get update && apt-get install -y --no-install-recommends \
34
  python3.12 python3.12-venv python3.12-dev \
35
  git ca-certificates \
36
+ openscad \
37
  libglib2.0-0 libsm6 libxext6 libgomp1 libfontconfig1 \
38
  libgl1 libegl1 libegl-mesa0 libxrender1 \
39
  && rm -rf /var/lib/apt/lists/* \
 
52
  # rebuild picks up the latest evaluator dependencies (including Open3D for
53
  # alignment). Lock to a commit SHA at the v1 release for reproducible scores
54
  # (see space-setup/post-gt-swap.md Stage F).
55
+ ARG CADGENBENCH_SHA=1924090
56
  RUN python -m pip install --no-cache-dir \
57
  "cadgenbench @ git+https://github.com/huggingface/cadgenbench.git@${CADGENBENCH_SHA}"
58