Skip to content

Commit

Permalink
clear warning
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cortes-intel committed Sep 18, 2024
1 parent 7c8f701 commit 4cc0598
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions dev/docker/onedal-dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ RUN apt-get update && \
apt-get -y install sudo wget gnupg git make python3-setuptools doxygen software-properties-common

# Install miniconda
ENV CONDA_DIR /opt/conda
ENV CONDA_DIR=/opt/conda
RUN wget --quiet \
"https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" && \
bash Miniforge3* -b -p /opt/conda

# Put conda in path to use conda activate
ENV PATH $CONDA_DIR/bin:$PATH
ENV PATH=$CONDA_DIR/bin:$PATH

# Installing environment for bazel
RUN wget https://github.com/bazelbuild/bazelisk/releases/download/v1.18.0/bazelisk-linux-amd64 && \
Expand All @@ -40,19 +40,19 @@ RUN wget https://github.com/bazelbuild/bazelisk/releases/download/v1.18.0/bazeli
COPY . ${workdirectory}

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

# Installing environment for DPCPP development dependencies
RUN .ci/env/apt.sh dpcpp
# # Installing environment for DPCPP development dependencies
# RUN .ci/env/apt.sh dpcpp

# Installing environment for clang-format
RUN .ci/env/apt.sh clang-format
# # Installing environment for clang-format
# RUN .ci/env/apt.sh clang-format

# Installing openBLAS dependency
RUN .ci/env/openblas.sh
# # Installing openBLAS dependency
# RUN .ci/env/openblas.sh

# Installing MKL dependency
RUN ./dev/download_micromkl.sh
# # Installing MKL dependency
# RUN ./dev/download_micromkl.sh

# Installing oneTBB dependency
RUN ./dev/download_tbb.sh
# # Installing oneTBB dependency
# RUN ./dev/download_tbb.sh

0 comments on commit 4cc0598

Please sign in to comment.