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 b353c09 commit 36437f7
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,14 +52,14 @@ 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 --branch developOO https://github.com/EMsoft-org/EMsoftSuperbuild.git \
&& mv EMsoftSuperbuild EMsoftOOSuperbuild \
&& cd EMsoftOOSuperbuild && mkdir Debug Release

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

0 comments on commit 36437f7

Please sign in to comment.