We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcf4c9c commit 7c57310Copy full SHA for 7c57310
docker/Dockerfile
@@ -15,7 +15,7 @@ RUN apt-get -y update && \
15
RUN groupadd --gid 1000 opensearch-benchmark && \
16
useradd -d /opensearch-benchmark -m -k /dev/null -g 1000 -N -u 1000 -l -s /bin/bash benchmark
17
18
-RUN python3 -m pip install h5py==3.10.0; if [ -z "$VERSION" ] ; then python3 -m pip install opensearch-benchmark ; else python3 -m pip install opensearch-benchmark==$VERSION ; fi
+RUN if [ -z "$VERSION" ] ; then python3 -m pip install opensearch-benchmark ; else python3 -m pip install opensearch-benchmark==$VERSION ; fi
19
20
WORKDIR /opensearch-benchmark
21
0 commit comments