We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 803b5f1 commit 5a8f3d2Copy full SHA for 5a8f3d2
build/dockerfile
@@ -2,9 +2,9 @@ FROM rapidsai/devcontainers:25.10-cpp-cuda12.9
2
3
COPY . /pyhpc-tutorial
4
5
-RUN pip install --root-user-action ignore -r /pyhpc-tutorial/build/requirements.txt
6
-RUN git config --global --unset "http.https://github.com/.extraheader"
7
-RUN git config --global --add safe.directory /pyhpc-tutorial
+RUN pip install --root-user-action ignore -r /pyhpc-tutorial/build/requirements.txt \
+ && git config --global --unset --all "http.https://github.com/.extraheader" || { code=$?; [ "$code" = 5 ] || exit "$code"; } \
+ && git config --global --set --append safe.directory "/pyhpc-tutorial"
8
9
WORKDIR /pyhpc-tutorial/notebooks
10
0 commit comments