Skip to content

Commit

Permalink
Update Windows versions for 23.05 release (#5826)
Browse files Browse the repository at this point in the history
  • Loading branch information
mc-nv committed May 31, 2023
1 parent 141e5ec commit fa2a70e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Dockerfile.win10.min
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ WORKDIR /
#
# Installing Vcpkg
#
ARG VCPGK_VERSION=2023.02.24
ARG VCPGK_VERSION=2022.11.14
RUN git clone --single-branch --depth=1 -b %VCPGK_VERSION% https://github.com/microsoft/vcpkg.git
WORKDIR /vcpkg
RUN bootstrap-vcpkg.bat
Expand Down Expand Up @@ -103,9 +103,9 @@ LABEL CMAKE_VERSION=${CMAKE_VERSION}
#
# Installing CUDA
#
ARG CUDA_MAJOR=11
ARG CUDA_MINOR=8
ARG CUDA_PATCH=0
ARG CUDA_MAJOR=12
ARG CUDA_MINOR=1
ARG CUDA_PATCH=1
ARG CUDA_VERSION=${CUDA_MAJOR}.${CUDA_MINOR}.${CUDA_PATCH}
ARG CUDA_PACKAGES="nvcc_${CUDA_MAJOR}.${CUDA_MINOR} \
cudart_${CUDA_MAJOR}.${CUDA_MINOR} \
Expand Down Expand Up @@ -135,8 +135,8 @@ LABEL CUDA_VERSION="${CUDA_VERSION}"
#
# Installing Tensorrt
#
ARG TENSORRT_VERSION=8.5.3.1
ARG TENSORRT_ZIP="TensorRT-${TENSORRT_VERSION}.Windows10.x86_64.cuda-11.8.zip"
ARG TENSORRT_VERSION=8.6.1.6
ARG TENSORRT_ZIP="TensorRT-${TENSORRT_VERSION}.Windows10.x86_64.cuda-12.0.zip"
ARG TENSORRT_SOURCE=${TENSORRT_ZIP}
# COPY ${TENSORRT_ZIP} /tmp/${TENSORRT_ZIP}
ADD ${TENSORRT_SOURCE} /tmp/${TENSORRT_ZIP}
Expand All @@ -153,8 +153,8 @@ LABEL TENSORRT_VERSION="${TENSORRT_VERSION}"
#
# Installing CUDNN
#
ARG CUDNN_VERSION=8.8.1.3
ARG CUDNN_ZIP=cudnn-windows-x86_64-${CUDNN_VERSION}_cuda11-archive.zip
ARG CUDNN_VERSION=8.9.1.23
ARG CUDNN_ZIP=cudnn-windows-x86_64-${CUDNN_VERSION}_cuda12-archive.zip
ARG CUDNN_SOURCE=${CUDNN_ZIP}

ADD ${CUDNN_SOURCE} /tmp/${CUDNN_ZIP}
Expand Down

0 comments on commit fa2a70e

Please sign in to comment.