Skip to content

Commit 9738293

Browse files
drymancopybara-github
authored andcommitted
Fix build_whl
PiperOrigin-RevId: 820243641
1 parent d614ea4 commit 9738293

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

oss/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,18 @@ RUN BAZEL_ARCH_SUFFIX="$(uname -m | sed s/aarch64/arm64/)" \
2121
&& curl -sSL --fail -o /usr/local/bin/bazel "https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VERSION-linux-$BAZEL_ARCH_SUFFIX" \
2222
&& chmod a+x /usr/local/bin/bazel
2323

24+
RUN apt-get install -y libhdf5-dev hdf5-tools
25+
2426
# Install dependencies needed for array_record.
2527
RUN --mount=type=cache,target=/root/.cache \
2628
$PYTHON_BIN -m pip install -U \
2729
absl-py \
30+
h5py \
2831
auditwheel \
2932
etils[epath] \
3033
patchelf \
3134
setuptools \
3235
twine \
3336
wheel;
3437

35-
WORKDIR "/tmp/array_record"
38+
WORKDIR "/tmp/array_record"

0 commit comments

Comments
 (0)