Skip to content

Commit

Permalink
Fix incorrect UN env var
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJaeger committed Sep 10, 2024
1 parent e93dd88 commit 9b5fdb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile_py3.11
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ SHELL ["/bin/bash", "-euxo", "pipefail", "-c"]
ENV INSTALL_DIR=/usr/local \
FSL_VERSION=6.0.7.9 \
MRTRIX_VERSION=3.0.4 \
VIRTUAL_ENV=/venv \
PATH=$PATH:$/venv/bin
VIRTUAL_ENV=/venv

# Initial update
RUN apt update && \
Expand Down Expand Up @@ -36,12 +35,13 @@ RUN apt update && \
# Install Poetry
ENV POETRY_HOME=${INSTALL_DIR}/poetry
RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH="${PATH}:${POETRY_HOME}/bin"
ENV PATH=${PATH}:${POETRY_HOME}/bin

# Install UV
RUN pip install uv && \
uv venv ${VIRTUAL_ENV} && \
uv pip install -U pip setuptools wheel
ENV PATH=$PATH:${VIRTUAL_ENV}/bin

# Install FSL
RUN curl https://fsl.fmrib.ox.ac.uk/fsldownloads/fslinstaller.py -o /tmp/fslinstaller.py
Expand Down

0 comments on commit 9b5fdb2

Please sign in to comment.