Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions tutorials/accelerated-python/brev/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,7 @@ RUN python -m venv ${ACH_RAPIDS_VENV} \
--display-name="Python 3 (RAPIDS 25.10)" \
--prefix=/usr/local

COPY . /accelerated-computing-hub

# Ensure accelerated-computing-hub directory is writable by any user
RUN chmod -R a+rwX /accelerated-computing-hub
COPY --chmod=0777 . /accelerated-computing-hub

WORKDIR /accelerated-computing-hub/tutorials/${ACH_TUTORIAL}/notebooks

Expand Down
5 changes: 1 addition & 4 deletions tutorials/cuda-cpp/brev/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ RUN apt-get update -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*

COPY . /accelerated-computing-hub

# Ensure accelerated-computing-hub directory is writable by any user
RUN chmod -R a+rwX /accelerated-computing-hub
COPY --chmod=0777 . /accelerated-computing-hub

WORKDIR /accelerated-computing-hub/tutorials/${ACH_TUTORIAL}/notebooks

Expand Down
5 changes: 1 addition & 4 deletions tutorials/cuda-tile/brev/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,7 @@ RUN curl -L -O https://developer.nvidia.com/downloads/assets/tools/secure/nsight
RUN python -m jupyter labextension disable "@jupyterlab/apputils-extension:announcements" \
&& python -m jupyter labextension disable "@jupyterlab/console-extension:tracker"

COPY . /accelerated-computing-hub

# Ensure accelerated-computing-hub directory is writable by any user
RUN chmod -R a+rwX /accelerated-computing-hub
COPY --chmod=0777 . /accelerated-computing-hub

WORKDIR /accelerated-computing-hub/tutorials/${ACH_TUTORIAL}/notebooks

Expand Down
5 changes: 1 addition & 4 deletions tutorials/nvmath-python/brev/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,7 @@ RUN apt-get update -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*

COPY . /accelerated-computing-hub

# Ensure accelerated-computing-hub directory is writable by any user
RUN chmod -R a+rwX /accelerated-computing-hub
COPY --chmod=0777 . /accelerated-computing-hub

WORKDIR /accelerated-computing-hub/tutorials/${ACH_TUTORIAL}/notebooks

Expand Down
7 changes: 1 addition & 6 deletions tutorials/stdpar/brev/docker-recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,7 @@
])


Stage0 += copy(src='.', dest='/accelerated-computing-hub')

# Ensure accelerated-computing-hub directory is writable by any user
Stage0 += shell(commands=[
'chmod -R a+rwX /accelerated-computing-hub',
])
Stage0 += raw(docker='COPY --chmod=0777 . /accelerated-computing-hub')

Stage0 += workdir(directory=f'/accelerated-computing-hub/tutorials/{tutorial}/notebooks')

Expand Down
Loading