We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1130ce2 commit 4c00eb2Copy full SHA for 4c00eb2
Dockerfile
@@ -162,6 +162,10 @@ RUN --mount=type=cache,target=/root/.cache/pip \
162
pip install --upgrade pip && \
163
pip install wheel && \
164
pip install grpcio && \
165
+ # pin to 3.10.0 to avoid error: libhdf5.so: cannot open shared object file: No such file or directory \
166
+ # if not version is set, it will install the 3.11.0 version which, seems that does not have the h5py dependencies \
167
+ # for arm yet.
168
+ pip install h5py==3.10.0 && \
169
pip install tensorflow
170
171
USER ${USER}
0 commit comments