Update Dockerfile
Browse files- Dockerfile +5 -5
Dockerfile
CHANGED
@@ -25,11 +25,11 @@ RUN pip install --no-cache-dir --upgrade pip
|
|
25 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
26 |
COPY --chown=user . $HOME/app
|
27 |
|
28 |
-
# Download and install dcm2niix
|
29 |
-
RUN wget https://github.com/rordenlab/dcm2niix/releases/latest/download/dcm2niix_lnx.zip && \
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
RUN dcm2niix -h
|
34 |
|
35 |
# Install any needed packages specified in requirements.txt
|
|
|
25 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
26 |
COPY --chown=user . $HOME/app
|
27 |
|
28 |
+
# # Download and install dcm2niix
|
29 |
+
# RUN wget https://github.com/rordenlab/dcm2niix/releases/latest/download/dcm2niix_lnx.zip && \
|
30 |
+
# unzip dcm2niix_lnx.zip && \
|
31 |
+
# cp dcm2niix /home/user/.local/bin
|
32 |
+
RUN pip install git+https://github.com/rordenlab/dcm2niix.git
|
33 |
RUN dcm2niix -h
|
34 |
|
35 |
# Install any needed packages specified in requirements.txt
|