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 jobs-video-encoding/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# --- Build stage ---
FROM nvidia/cuda:12.1.0-devel-ubuntu22.04 AS builder
FROM nvidia/cuda:13.0.1-devel-ubuntu22.04 AS builder
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The Docker image nvidia/cuda:13.0.1-devel-ubuntu22.04 does not appear to be publicly available on Docker Hub. This will cause the build to fail unless the image exists in a private registry. Please ensure the image tag is correct and available.

Additionally, with a major CUDA version update, the hardcoded nv-codec-headers version on line 18 (n12.1.14.0) is likely incompatible. This version is for NVENC API 12.1. A newer CUDA version will require a corresponding nv-codec-headers version, which should be updated to prevent build or runtime errors.

ENV DEBIAN_FRONTEND=noninteractive

ENV DIRPATH=/workspace
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN ./configure \


# --- Runtime stage ---
FROM nvidia/cuda:12.1.0-runtime-ubuntu22.04
FROM nvidia/cuda:13.0.1-runtime-ubuntu22.04
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The Docker image nvidia/cuda:13.0.1-runtime-ubuntu22.04 does not appear to be publicly available on Docker Hub. This will cause the image pull to fail during the build process unless it's available in a private registry. Please ensure the tag is correct and the image is accessible.

ENV NVIDIA_VISIBLE_DEVICES all
ENV NVIDIA_DRIVER_CAPABILITIES compute,video,utility

Expand Down