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 6399823 commit dd4cb43Copy full SHA for dd4cb43
Dockerfile
@@ -57,9 +57,7 @@ ENV PATH /opt/conda/bin:$PATH
57
ARG CONDA_VERSION=py38_4.10.3
58
ARG SHA256SUM=935d72deb16e42739d69644977290395561b7a6db059b316958d97939e9bdf3d
59
60
-# hadolint ignore=DL3018
61
-RUN apk add -q --no-cache bash procps && \
62
- wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh -O miniconda.sh && \
+RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh -O miniconda.sh && \
63
echo "${SHA256SUM} miniconda.sh" > miniconda.sha256 && \
64
if ! sha256sum -cs miniconda.sha256; then exit 1; fi && \
65
mkdir -p /opt && \
0 commit comments