We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae9d2f8 commit f18f171Copy full SHA for f18f171
Dockerfile
@@ -87,10 +87,11 @@ RUN pip3 install --break-system-packages \
87
88
# Install Swiftly (Swift toolchain manager)
89
# Install Swiftly (Swift toolchain manager) using the new manual method
90
+# Skip install of default toolchain when installing swiftly
91
RUN ARCH=$(uname -m) && \
92
curl -f -L -O "https://download.swift.org/swiftly/linux/swiftly-${ARCH}.tar.gz" && \
93
tar zxf "swiftly-${ARCH}.tar.gz" && \
- ./swiftly init --quiet-shell-followup && \
94
+ ./swiftly init --quiet-shell-followup --skip-install && \
95
rm "swiftly-${ARCH}.tar.gz"
96
97
# Add swiftly to the PATH. **Note: The install path is different!**
0 commit comments