Skip to content

Commit 007914f

Browse files
authored
Update Dockerfile
1 parent 63093cc commit 007914f

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,13 @@ RUN \
6363
# Create the configuration directory for uv.
6464
mkdir -p ~/.config/uv && \
6565
\
66-
### --- [ THE FIX IS HERE - Using a more robust method ] --- ###
67-
# Create the uv.toml file using a "here document", which is reliable across all shells.
66+
# Create the uv.toml file using a "here document".
6867
cat <<EOF > ~/.config/uv/uv.toml && \
6968
[tool.uv]
7069
index-url = "https://mirrors.aliyun.com/pypi/simple"
7170
EOF
72-
\
73-
# Create the default conda environment.
71+
# --- [ THE FIX IS HERE ] ---
72+
# The '&& \' chaining operator MUST come AFTER the 'EOF' marker.
7473
conda create -n py${PYTHON_VERSION} python=${PYTHON_VERSION} -y && \
7574
\
7675
# Pre-install a minimal set of core data science libraries.

0 commit comments

Comments
 (0)