Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Aug 3, 2023
1 parent fef45da commit 783b235
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ ENV PATH="/usr/local/miniconda/bin:$PATH" \
PYTHONNOUSERSITE=1

# Install Python dependencies
RUN conda \
install -y \
RUN conda install -y \
python=3.10 \
conda-build \
pip=23 \
Expand All @@ -102,6 +101,12 @@ RUN conda \
conda build purge-all; sync && \
conda clean -tipsy; sync

# Install FSL from old ASLPrep version
COPY --from=build_fsl /opt/fsl-6.0.5/ /opt/fsl-6.0.5/
ENV FSLDIR="/opt/fsl-6.0.5" \
PATH="/opt/fsl-6.0.5/bin:$PATH" \
FSLOUTPUTTYPE="NIFTI_GZ"

# Install Neurodebian packages (AFNI, Connectome Workbench, git)
RUN curl -sSL "http://neuro.debian.net/lists/$( lsb_release -c | cut -f2 ).us-ca.full" >> /etc/apt/sources.list.d/neurodebian.sources.list && \
apt-key add /usr/local/etc/neurodebian.gpg && \
Expand Down

0 comments on commit 783b235

Please sign in to comment.