Skip to content

Commit

Permalink
adding conda to docker
Browse files Browse the repository at this point in the history
  • Loading branch information
napetrov committed Sep 14, 2023
1 parent 8a395f8 commit f726d99
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions dev/docker/onedal-dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ WORKDIR ${workdirectory}
RUN apt-get update && \
apt-get -y install sudo wget gnupg git

# Install miniconda
ENV CONDA_DIR /opt/conda
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh && \
/bin/bash ~/miniconda.sh -b -p /opt/conda

# Put conda in path so we can use conda activate
ENV PATH=$CONDA_DIR/bin:$PATH

# Installing environment for base development dependencies
RUN .ci/env/apt.sh dev-base

Expand Down

0 comments on commit f726d99

Please sign in to comment.