We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d614ea4 commit 9738293Copy full SHA for 9738293
1 file changed
oss/Dockerfile
@@ -21,15 +21,18 @@ RUN BAZEL_ARCH_SUFFIX="$(uname -m | sed s/aarch64/arm64/)" \
21
&& curl -sSL --fail -o /usr/local/bin/bazel "https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VERSION-linux-$BAZEL_ARCH_SUFFIX" \
22
&& chmod a+x /usr/local/bin/bazel
23
24
+RUN apt-get install -y libhdf5-dev hdf5-tools
25
+
26
# Install dependencies needed for array_record.
27
RUN --mount=type=cache,target=/root/.cache \
28
$PYTHON_BIN -m pip install -U \
29
absl-py \
30
+ h5py \
31
auditwheel \
32
etils[epath] \
33
patchelf \
34
setuptools \
35
twine \
36
wheel;
37
-WORKDIR "/tmp/array_record"
38
+WORKDIR "/tmp/array_record"
0 commit comments