Skip to content
Closed
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:latest

FROM nvcr.io/nvidia/cuda:12.4.0-runtime-ubuntu22.04 AS base
FROM nvcr.io/nvidia/cuda:13.0.1-runtime-ubuntu22.04 AS base

ARG DEBIAN_FRONTEND=noninteractive

Expand All @@ -10,7 +10,7 @@ RUN apt update \
&& rm -rf /var/lib/apt/lists/*

RUN apt update \
&& apt install -y curl cuda-nvcc-12-4 libcurand-dev-12-4 \
&& apt install -y curl cuda-nvcc-13-0 libcurand-dev-13-0 \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down