Skip to content

Commit 324dc2b

Browse files
authored
bump: OpenCV 4.10.0 (#47)
1 parent 034abc7 commit 324dc2b

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/docker-builds.yml

+5-5
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.9.0"]
22+
opencv_version: ["4.10.0"]
2323
device: ["cpu", "gpu"]
2424
include:
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" }
25+
- { ubuntu_version: "22.04", python_version: "3.10", opencv_version: "4.10.0", device: "cpu" }
26+
- { ubuntu_version: "22.04", python_version: "3.10", opencv_version: "4.10.0", device: "gpu" }
27+
- { ubuntu_version: "22.04", python_version: "3.11", opencv_version: "4.10.0", device: "cpu" }
28+
- { ubuntu_version: "22.04", python_version: "3.11", opencv_version: "4.10.0", device: "gpu" }
2929
steps:
3030
- name: Checkout
3131
uses: actions/checkout@v4

README.md

+2-2
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.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
7+
- `:cpu-pyX.y-cvX.y.z` for Python 2.x/3.x, OpenCV 4.10.x, FFmpeg
8+
- `:gpu-pyX.y-cvX.y.z` for Python 2.x/3.x, OpenCV 4.10.x, FFmpeg with CUDA 11.4 support
99

1010
## Build
1111

cpu/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# https://www.learnopencv.com/install-opencv3-on-ubuntu/
22
# https://www.osradar.com/how-to-install-opencv-on-ubuntu-20-04/
33

4-
ARG UBUNTU_VERSION=22.04
4+
ARG UBUNTU_VERSION="22.04"
55

66
FROM ubuntu:${UBUNTU_VERSION}
77

88
LABEL maintainer="https://github.com/Borda"
99

10-
ARG PYTHON_VERSION=3.9
11-
ARG OPENCV_VERSION=4.9.0
10+
ARG PYTHON_VERSION="3.9"
11+
ARG OPENCV_VERSION="4.10.0"
1212

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

gpu/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
# CALL: docker image build -t python-opencv-ffmpeg:py36 -f cpu/Dockerfile --build-arg PYTHON_VERSION=3.6 .
77

8-
ARG CUDA_VERSION=11.8.0
9-
ARG UBUNTU_VERSION=22.04
8+
ARG CUDA_VERSION="11.8.0"
9+
ARG UBUNTU_VERSION="22.04"
1010

1111
FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu${UBUNTU_VERSION}
1212

1313
LABEL maintainer="https://github.com/Borda"
1414

15-
ARG PYTHON_VERSION=3.9
16-
ARG OPENCV_VERSION=4.9.0
15+
ARG PYTHON_VERSION="3.9"
16+
ARG OPENCV_VERSION="4.10.0"
1717

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

0 commit comments

Comments
 (0)