From 78254fcc9eb7e011f2e77cac822ccb6a9ecbf6fa Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Mon, 19 Aug 2024 16:54:18 -0400 Subject: [PATCH] Fix python call. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 97d2196..7e8aba9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -206,7 +206,7 @@ WORKDIR /root/ # Precaching templates COPY scripts/fetch_templates.py fetch_templates.py -RUN ${CONDA_PYTHON} fetch_templates.py && \ +RUN python fetch_templates.py && \ rm fetch_templates.py && \ find $HOME/.cache/templateflow -type d -exec chmod go=u {} + && \ find $HOME/.cache/templateflow -type f -exec chmod go=u {} +