Skip to content

Commit d5c6624

Browse files
committed
Use mirrored base image from GHCR
1 parent 657bf25 commit d5c6624

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

tutorials/accelerated-python/brev/dockerfile

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rapidsai/devcontainers:25.08-cpp-cuda12.8
1+
FROM ghcr.io/nvidia/mirrors/rapidsai-devcontainers-25.08-cpp-cuda12.8
22

33
ENV PIP_ROOT_USER_ACTION=ignore \
44
PIP_DISABLE_PIP_VERSION_CHECK=1 \
@@ -13,18 +13,16 @@ RUN apt-get update -y \
1313
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
1414
git \
1515
git-lfs \
16-
&& apt-get clean -y \
17-
&& rm -rf /var/lib/apt/lists/*
18-
19-
# Install Docker
20-
RUN apt-get update -y \
21-
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
2216
apt-transport-https \
2317
ca-certificates \
2418
curl \
2519
gnupg \
2620
lsb-release \
27-
&& mkdir -p /etc/apt/keyrings \
21+
&& apt-get clean -y \
22+
&& rm -rf /var/lib/apt/lists/*
23+
24+
# Install Docker
25+
RUN mkdir -p /etc/apt/keyrings \
2826
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg \
2927
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null \
3028
&& apt-get update -y \

0 commit comments

Comments
 (0)