Skip to content

Commit

Permalink
update to include boost
Browse files Browse the repository at this point in the history
  • Loading branch information
aghaeifar committed Mar 18, 2024
1 parent 0c3eeb9 commit bb2795c
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
net-tools \
iputils-ping \
vim \
git
git \
libboost-all-dev

# RUN apt-get install nvidia-cuda-toolkit

Expand All @@ -43,12 +44,16 @@ RUN apt-get clean \
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir numpy torch scipy nibabel ipython jupyter matplotlib tqdm h5py pandas scikit-image scikit-learn seaborn

LABEL org.opencontainers.image.authors="Ali Aghaeifar"

# Clone the Git repository
RUN git clone https://github.com/aghaeifar/SpinWalk.git /opt/SpinWalk
WORKDIR /opt/SpinWalk
RUN cmake -B ./build && cmake --build ./build --config Release
RUN cmake --install ./build


# Mount the host's home directory in the container
LABEL org.opencontainers.image.authors="Ali Aghaeifar"


# Set the default command to start MATLAB
# CMD matlab
# docker build -t spinwalk .
# docker run --gpus all --rm -it --runtime=nvidia spinwalk bash

0 comments on commit bb2795c

Please sign in to comment.