Skip to content

Commit 8fb0086

Browse files
authored
fix libsodium issue (#432)
1 parent 42abb25 commit 8fb0086

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

dockerfiles/ClipperTestsDockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ RUN echo 'export PATH=/opt/conda/bin:$PATH' > /etc/profile.d/conda.sh \
1515
&& /bin/bash /tmp/anaconda.sh -b -p /opt/conda \
1616
&& rm /tmp/anaconda.sh
1717
ENV PATH "/opt/conda/bin:$PATH"
18-
RUN conda install -y libgcc pyzmq
18+
RUN conda config --set ssl_verify no \
19+
&& conda install -c anaconda cloudpickle=0.5.2 \
20+
&& conda install -y libgcc pyzmq libsodium
1921

20-
RUN pip install requests subprocess32 scikit-learn numpy pyyaml docker kubernetes pyspark tensorflow cloudpickle==0.5.2
22+
RUN pip install requests subprocess32 scikit-learn numpy pyyaml docker kubernetes tensorflow
23+
RUN conda install pyspark
2124

2225
# Install maven
2326
ARG MAVEN_VERSION=3.5.0

0 commit comments

Comments
 (0)