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 59d312d commit b4e1e6cCopy full SHA for b4e1e6c
.github/workflows/build-docker-image.yml
@@ -4,11 +4,6 @@ on:
4
push:
5
branches:
6
- main
7
- paths:
8
- - 'build/dockerfile'
9
- - 'build/requirements.txt'
10
- - 'build/docker-compose.yml'
11
- - '.github/workflows/build-docker-image.yml'
12
13
jobs:
14
build-and-push:
build/dockerfile
@@ -1,7 +1,9 @@
1
FROM rapidsai/devcontainers:25.10-cpp-cuda12.9
2
3
-WORKDIR /pyhpc-tutorial
-
COPY . /pyhpc-tutorial
-RUN pip install --root-user-action ignore -r build/requirements.txt
+RUN pip install --root-user-action ignore -r /pyhpc-tutorial/build/requirements.txt
+
+WORKDIR /pyhpc-tutorial/notebooks
+ENTRYPOINT git pull && /bin/bash
0 commit comments