Skip to content

Commit dcc34f6

Browse files
authored
bump: OpenCV 4.9.0 (#41)
1 parent b0eb101 commit dcc34f6

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/docker-builds.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
matrix:
2020
ubuntu_version: ["20.04"]
2121
python_version: ["2.7", "3.6", "3.7", "3.8", "3.9"]
22-
opencv_version: ["4.8.1"]
22+
opencv_version: ["4.9.0"]
2323
device: ["cpu", "gpu"]
2424
include:
25-
- { ubuntu_version: "22.04", python_version: "3.10", opencv_version: "4.8.1", device: "cpu" }
26-
- { ubuntu_version: "22.04", python_version: "3.10", opencv_version: "4.8.1", device: "gpu" }
27-
- { ubuntu_version: "22.04", python_version: "3.11", opencv_version: "4.8.1", device: "cpu" }
28-
- { ubuntu_version: "22.04", python_version: "3.11", opencv_version: "4.8.1", device: "gpu" }
25+
- { ubuntu_version: "22.04", python_version: "3.10", opencv_version: "4.9.0", device: "cpu" }
26+
- { ubuntu_version: "22.04", python_version: "3.10", opencv_version: "4.9.0", device: "gpu" }
27+
- { ubuntu_version: "22.04", python_version: "3.11", opencv_version: "4.9.0", device: "cpu" }
28+
- { ubuntu_version: "22.04", python_version: "3.11", opencv_version: "4.9.0", device: "gpu" }
2929
steps:
3030
- name: Checkout
3131
uses: actions/checkout@v4

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Repository for clean Dockerfile containing [FFmpeg](https://www.ffmpeg.org/), [O
44

55
## Tags
66

7-
- `:cpu-pyX.y-cvX.y.z` for Python 2.x/3.x, OpenCV 4.8.x, FFmpeg
8-
- `:gpu-pyX.y-cvX.y.z` for Python 2.x/3.x, OpenCV 4.8.x, FFmpeg with CUDA 11.4 support
7+
- `:cpu-pyX.y-cvX.y.z` for Python 2.x/3.x, OpenCV 4.9.x, FFmpeg
8+
- `:gpu-pyX.y-cvX.y.z` for Python 2.x/3.x, OpenCV 4.9.x, FFmpeg with CUDA 11.4 support
99

1010
## Build
1111

cpu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM ubuntu:${UBUNTU_VERSION}
88
LABEL maintainer="https://github.com/Borda"
99

1010
ARG PYTHON_VERSION=3.9
11-
ARG OPENCV_VERSION=4.8.0
11+
ARG OPENCV_VERSION=4.9.0
1212

1313
# Needed for string substitution
1414
SHELL ["/bin/bash", "-c"]

gpu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu${UBUNTU_VERSION}
1313
LABEL maintainer="https://github.com/Borda"
1414

1515
ARG PYTHON_VERSION=3.9
16-
ARG OPENCV_VERSION=4.8.0
16+
ARG OPENCV_VERSION=4.9.0
1717

1818
# Needed for string substitution
1919
SHELL ["/bin/bash", "-c"]

0 commit comments

Comments
 (0)