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 dd4cb43 commit 2cce041Copy full SHA for 2cce041
Dockerfile
@@ -59,7 +59,7 @@ ARG SHA256SUM=935d72deb16e42739d69644977290395561b7a6db059b316958d97939e9bdf3d
59
60
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh -O miniconda.sh && \
61
echo "${SHA256SUM} miniconda.sh" > miniconda.sha256 && \
62
- if ! sha256sum -cs miniconda.sha256; then exit 1; fi && \
+ sha256sum -c --status miniconda.sha256 && \
63
mkdir -p /opt && \
64
sh miniconda.sh -b -p /opt/conda && \
65
rm miniconda.sh miniconda.sha256 && \
0 commit comments