We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a8f3d2 commit a19bf70Copy full SHA for a19bf70
1 file changed
build/dockerfile
@@ -2,10 +2,10 @@ 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
- && git config --global --unset --all "http.https://github.com/.extraheader" || { code=$?; [ "$code" = 5 ] || exit "$code"; } \
7
- && git config --global --set --append safe.directory "/pyhpc-tutorial"
8
-
9
WORKDIR /pyhpc-tutorial/notebooks
10
+RUN pip install --root-user-action ignore -r /pyhpc-tutorial/build/requirements.txt \
+ && git config --unset-all "http.https://github.com/.extraheader" || { code=$?; [ "$code" = 5 ] || exit "$code"; } \
+ && git config --global --add safe.directory "/pyhpc-tutorial"
+
11
ENTRYPOINT git pull && /bin/bash
0 commit comments