Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
marcdegraef authored Dec 14, 2023
1 parent 77c6091 commit 785e107
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ RUN mkdir -p /etc/OpenCL/vendors && \
echo "libnvidia-opencl.so.1" > /etc/OpenCL/vendors/nvidia.icd

# clone EMsoft and set up SDK Debug/Release
RUN mkdir ~/EMs \
&& cd ~/EMs \
RUN mkdir /home/EMs \
&& cd /home/EMs \
&& git clone https://github.com/EMsoft-org/EMsoftSuperbuild.git \
&& cd EMsoftSuperbuild && mkdir Debug Release

# EMsoftSuperbuild
RUN cd ~/EMs/EMsoftSuperbuild/Debug/ \
RUN cd /home/EMs/EMsoftSuperbuild/Debug/ \
&& cmake -DEMsoft_SDK=/opt/EMsoft_SDK -DCMAKE_BUILD_TYPE=Debug ../ -G Ninja && ninja \
&& cd ../Release \
&& cmake -DEMsoft_SDK=/opt/EMsoft_SDK -DCMAKE_BUILD_TYPE=Release ../ -G Ninja && ninja

0 comments on commit 785e107

Please sign in to comment.