Skip to content

Commit

Permalink
update: set default versions for images
Browse files Browse the repository at this point in the history
- non-cuda image now based on `ubuntu:24.04`
- cuda image now using `cuda:11.7.1-cudnn8-devel-ubuntu22.04`
  • Loading branch information
MamoruDS committed Jun 25, 2024
1 parent be67167 commit 8dbf11a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CTR_WORKSPACE/targets_matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"include": [
{
"dockerfile": "./CTR_WORKSPACE/ws.dockerfile",
"extra_tags": "22.04",
"extra_tags": "24.04",
"cuda_version": "",
"cudnn_version": null,
"base_ubuntu": "22.04"
"base_ubuntu": "24.04"
},
{
"dockerfile": "./CTR_WORKSPACE/ws.cuda.dockerfile",
Expand Down
4 changes: 2 additions & 2 deletions CTR_WORKSPACE/ws.cuda.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG BASE_UBUNTU=20.04
ARG CUDA_VER=11.3.1
ARG BASE_UBUNTU=22.04
ARG CUDA_VER=11.7.1
ARG CUDNN_VER=cudnn8
FROM nvidia/cuda:${CUDA_VER}-${CUDNN_VER}-devel-ubuntu${BASE_UBUNTU}
LABEL maintainer="MamoruDS <mamoruds.io@gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion CTR_WORKSPACE/ws.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_UBUNTU=22.04
ARG BASE_UBUNTU=24.04
FROM ubuntu:${BASE_UBUNTU}
LABEL maintainer="MamoruDS <mamoruds.io@gmail.com>"

Expand Down

0 comments on commit 8dbf11a

Please # to comment.