ayushkhare12

Untitled

Dec 30th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. ENV CONDA_DIR="/opt/conda"
  2. ENV PATH="$CONDA_DIR/bin:$PATH"
  3. RUN CONDA_VERSION="4.5.1" && \
  4. CONDA_MD5_CHECKSUM="866ae9dff53ad0874e1d1a60b1ad1ef8" && \
  5. \
  6. apk add --no-cache --virtual=.build-dependencies wget ca-certificates bash && \
  7. \
  8. mkdir -p "$CONDA_DIR" && \
  9. wget "http://repo.continuum.io/miniconda/Miniconda2-${CONDA_VERSION}-Linux-x86_64.sh" -O miniconda.sh && \
  10. bash miniconda.sh -f -b -p "$CONDA_DIR"
Add Comment
Please, Sign In to add comment