Skip to content

Commit

Permalink
ci: cuda/cudnn version upgrade (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
kibae authored Jun 28, 2024
1 parent 97f2e23 commit 75e16c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/build-docker/linux-cuda12.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nvidia/cuda:12.2.2-cudnn8-devel-ubuntu22.04 AS builder
FROM nvidia/cuda:12.3.2-cudnn9-devel-ubuntu22.04 AS builder

RUN apt update && apt install -y curl wget git build-essential cmake pkg-config libboost-all-dev libssl-dev
RUN mkdir -p /app/source
Expand All @@ -20,7 +20,7 @@ RUN cmake --build build --parallel 4 --target onnxruntime_server_standalone
RUN cmake --install build --prefix /app/onnxruntime-server

# target
FROM nvidia/cuda:12.2.2-cudnn8-runtime-ubuntu22.04 AS target
FROM nvidia/cuda:12.3.2-cudnn9-runtime-ubuntu22.04 AS target
COPY --from=builder /app/onnxruntime-server /app
COPY --from=builder /usr/local/onnxruntime /usr/local/onnxruntime

Expand Down

0 comments on commit 75e16c5

Please sign in to comment.