Skip to content

Commit 96e1c1a

Browse files
committed
feat: add 5.0.0-alpha version
1 parent 00c4432 commit 96e1c1a

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
version: [4.10.0, 4.9.0]
12+
version: [5.0.0-alpha, 4.10.0, 4.9.0]
1313
dist: ["alpine", "debian", "fedora", "ubuntu"]
1414
steps:
1515
- uses: actions/checkout@v2
@@ -33,4 +33,4 @@ jobs:
3333
username: ${{ secrets.DOCKERHUB_USERNAME }}
3434
password: ${{ secrets.DOCKERHUB_TOKEN }}
3535
- name: Latest
36-
run: make latest CV=4.10.0 DIST=fedora
36+
run: make latest CV=5.0.0-alpha DIST=fedora

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: run build login push latest test save
22

3-
CV ?= 4.10.0
3+
CV ?= 5.0.0-alpha
44
DIST ?= fedora
55
WORKDIR=/mnt/$$(basename $$(pwd))
66
ORG=hdgigante

readme.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ $ docker run -it hdgigante/python-opencv python3
2525

2626
| opencv | base image | tag | python | size |
2727
|:---------:|:------:|:-----:|:-----:|:-----:|
28-
| **4.10.0** | [fedora:41](https://hub.docker.com/_/fedora) | `hdgigante/python-opencv` | 3.13 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/hdgigante/python-opencv/4.10.0-fedora?label=%20&logo=docker&logoColor=white&style=flat-square) |
28+
| **5.0.0-alpha** | [fedora:41](https://hub.docker.com/_/fedora) | `hdgigante/python-opencv` | 3.13 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/hdgigante/python-opencv/5.0.0-alpha-fedora?label=%20&logo=docker&logoColor=white&style=flat-square) |
29+
| | [python:3.13-alpine](https://hub.docker.com/_/python) | `hdgigante/python-opencv:5.0.0-alpha-alpine` | 3.13 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/hdgigante/python-opencv/5.0.0-alpha-alpine?label=%20&logo=docker&logoColor=white&style=flat-square) |
30+
| | [ubuntu:24.10](https://hub.docker.com/_/ubuntu) | `hdgigante/python-opencv:5.0.0-alpha-ubuntu` | 3.12 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/hdgigante/python-opencv/5.0.0-alpha-ubuntu?label=%20&logo=docker&logoColor=white&style=flat-square) |
31+
| | [debian:12.8-slim](https://hub.docker.com/_/debian) | `hdgigante/python-opencv:5.0.0-alpha-debian` | 3.11 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/hdgigante/python-opencv/5.0.0-alpha-debian?label=%20&logo=docker&logoColor=white&style=flat-square) |
32+
| **4.10.0** | [fedora:41](https://hub.docker.com/_/fedora) | `hdgigante/python-opencv:4.10.0-fedora` | 3.13 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/hdgigante/python-opencv/4.10.0-fedora?label=%20&logo=docker&logoColor=white&style=flat-square) |
2933
| | [python:3.13-alpine](https://hub.docker.com/_/python) | `hdgigante/python-opencv:4.10.0-alpine` | 3.13 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/hdgigante/python-opencv/4.10.0-alpine?label=%20&logo=docker&logoColor=white&style=flat-square) |
3034
| | [ubuntu:24.10](https://hub.docker.com/_/ubuntu) | `hdgigante/python-opencv:4.10.0-ubuntu` | 3.12 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/hdgigante/python-opencv/4.10.0-ubuntu?label=%20&logo=docker&logoColor=white&style=flat-square) |
3135
| | [debian:12.8-slim](https://hub.docker.com/_/debian) | `hdgigante/python-opencv:4.10.0-debian` | 3.11 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/hdgigante/python-opencv/4.10.0-debian?label=%20&logo=docker&logoColor=white&style=flat-square) |
@@ -80,7 +84,7 @@ Config build options
8084
To build locally
8185

8286
```
83-
$ make build CV=4.10.0 DIST=fedora
87+
$ make build CV=5.0.0-alpha DIST=fedora
8488
```
8589

8690
## Based on...

0 commit comments

Comments
 (0)