We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63093cc commit 007914fCopy full SHA for 007914f
1 file changed
Dockerfile
@@ -63,14 +63,13 @@ RUN \
63
# Create the configuration directory for uv.
64
mkdir -p ~/.config/uv && \
65
\
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.
+ # Create the uv.toml file using a "here document".
68
cat <<EOF > ~/.config/uv/uv.toml && \
69
[tool.uv]
70
index-url = "https://mirrors.aliyun.com/pypi/simple"
71
EOF
72
- \
73
- # Create the default conda environment.
+ # --- [ THE FIX IS HERE ] ---
+ # The '&& \' chaining operator MUST come AFTER the 'EOF' marker.
74
conda create -n py${PYTHON_VERSION} python=${PYTHON_VERSION} -y && \
75
76
# Pre-install a minimal set of core data science libraries.
0 commit comments