Skip to content

Commit

Permalink
fixing docker
Browse files Browse the repository at this point in the history
  • Loading branch information
napetrov committed Sep 14, 2023
1 parent f726d99 commit da719ef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dev/docker/onedal-dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ WORKDIR ${workdirectory}

#Env setup
RUN apt-get update && \
apt-get -y install sudo wget gnupg git
apt-get -y install sudo wget gnupg git make

# Install miniconda
ENV CONDA_DIR /opt/conda
Expand All @@ -50,8 +50,9 @@ RUN .ci/env/bazelisk.sh
RUN .ci/env/openblas.sh

ARG config

RUN \
if [[ "${config}" == "build_make" ]] ; \
if [ "${config}" == "build_make" ] ; \
then \
.ci/scripts/build.sh --compiler gnu --optimizations avx2 --target daal --conda-env ci-env; \
.ci/scripts/build.sh --compiler gnu --optimizations avx2 --target oneapi_c; \
Expand Down

0 comments on commit da719ef

Please sign in to comment.