Skip to content

Commit

Permalink
Fix Dockerfile to point to correct paths
Browse files Browse the repository at this point in the history
  • Loading branch information
aristizabal95 committed Dec 12, 2024
1 parent 8f4b995 commit ce44f2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/RANO/data_preparator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM locally-built-fetstool AS data_prep
FROM local/fets_tool AS data_prep

RUN find /Front-End/bin/install/appdir/usr/bin -type f \( -perm -u=x -o -type l \) -exec cp -P {} /usr/bin \;

WORKDIR /

COPY ./mlcubes/data_preparation/project/requirements.txt /project/requirements.txt
COPY ./project/requirements.txt /project/requirements.txt

RUN pip install --upgrade pip

Expand All @@ -30,6 +30,6 @@ RUN /nnunet_env/bin/pip install git+https://github.com/MIC-DKFZ/nnUNet.git@nnune

ENV CUDA_VISIBLE_DEVICES="0"

COPY ./mlcubes/data_preparation/project /project
COPY ./project /project

ENTRYPOINT ["python", "/project/mlcube.py"]

0 comments on commit ce44f2f

Please sign in to comment.