Skip to content

Commit a19bf70

Browse files
committed
Fix the git config options in the Dockerfile again.
1 parent 5a8f3d2 commit a19bf70

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build/dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ FROM rapidsai/devcontainers:25.10-cpp-cuda12.9
22

33
COPY . /pyhpc-tutorial
44

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-
95
WORKDIR /pyhpc-tutorial/notebooks
106

7+
RUN pip install --root-user-action ignore -r /pyhpc-tutorial/build/requirements.txt \
8+
&& git config --unset-all "http.https://github.com/.extraheader" || { code=$?; [ "$code" = 5 ] || exit "$code"; } \
9+
&& git config --global --add safe.directory "/pyhpc-tutorial"
10+
1111
ENTRYPOINT git pull && /bin/bash

0 commit comments

Comments
 (0)