Skip to content

Commit

Permalink
bump opencv to 4.8.0 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Jul 19, 2023
1 parent 4223053 commit 47d2739
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
python_version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
opencv_version: ["4.7.0"]
opencv_version: ["4.8.0"]
device: ["cpu", "gpu"]
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Repository for clean Dockerfile containing [FFmpeg](https://www.ffmpeg.org/), [O

## Tags

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

## Build

Expand Down
2 changes: 1 addition & 1 deletion cpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM ubuntu:20.04
LABEL maintainer="https://github.com/Borda"

ARG PYTHON_VERSION=3.9
ARG OPENCV_VERSION=4.7.0
ARG OPENCV_VERSION=4.8.0

# Needed for string substitution
SHELL ["/bin/bash", "-c"]
Expand Down
4 changes: 2 additions & 2 deletions gpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

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

ARG CUDA_VERSION=11.4.0
ARG CUDA_VERSION=11.7.1

FROM nvidia/cuda:${CUDA_VERSION}-devel-ubuntu20.04

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

ARG PYTHON_VERSION=3.9
ARG OPENCV_VERSION=4.7.0
ARG OPENCV_VERSION=4.8.0

# Needed for string substitution
SHELL ["/bin/bash", "-c"]
Expand Down

0 comments on commit 47d2739

Please sign in to comment.