diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index ce88958..a85b68e 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build run: make image diff --git a/Dockerfile b/Dockerfile index 1a48109..8a5c4db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,8 @@ LABEL org.opencontainers.image.source=https://github.com/andrii-reznik/docker-py LABEL org.opencontainers.image.description="Debian based image with pre-installed GDAL/OGR libraries and Python bindings" LABEL org.opencontainers.image.licenses=MIT -ARG PYTHON_VERSION=3.12.4 -ARG GDAL_VERSION=3.9.1 +ARG PYTHON_VERSION=3.12.6 +ARG GDAL_VERSION=3.9.2 ARG SOURCE_DIR=/usr/local/src/python-gdal ENV PYENV_ROOT="/usr/local/pyenv" diff --git a/Makefile b/Makefile index bc74c3a..2bbc606 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ -GDAL_VERSION ?= 3.9.1 -PYTHON_VERSION ?= 3.12.4 -DOCKER_REPO ?= andrejreznik/python-gdal +GDAL_VERSION ?= 3.9.2 +PYTHON_VERSION ?= 3.12.6 +DOCKER_REPO ?= ghcr.io/andrii-rieznik/python-gdal IMAGE ?= $(DOCKER_REPO):py$(PYTHON_VERSION)-gdal$(GDAL_VERSION) image: diff --git a/README.md b/README.md index e81a4f8..6b2fdc6 100644 --- a/README.md +++ b/README.md @@ -28,13 +28,13 @@ docker run -it ghcr.io/andrii-rieznik/python-gdal /bin/bash To use a specific version of Python or GDAL with the appropriate tag: ```bash -docker run ghcr.io/andrii-rieznik/python-gdal:py3.12.4-gdal3.9.1 +docker run ghcr.io/andrii-rieznik/python-gdal:py3.12.6-gdal3.9.2 ``` To pass as build arguments: ```bash -make image PYTHON_VERSION=3.12.4 GDAL_VERSION=3.9.1 +make image PYTHON_VERSION=3.12.6 GDAL_VERSION=3.9.2 ``` ## License