diff --git a/ci/run_connection_test.sh b/ci/run_connection_test.sh
index ecdeff6..4974d2f 100755
--- a/ci/run_connection_test.sh
+++ b/ci/run_connection_test.sh
@@ -19,7 +19,7 @@ echo "Testing $CON_TYPE connection ${ROOT:+'with root'}"
if [[ "$CON_TYPE" == "podman" ]]; then
${SUDO} $PODMAN_EXE ps | grep -q "${CON_TYPE}-container" || \
- ${SUDO} $PODMAN_EXE run -d --name "${CON_TYPE}-container" python:3-alpine sleep 1d
+ ${SUDO} $PODMAN_EXE run -d --name "${CON_TYPE}-container" python:3.10-alpine sleep 1d
elif [[ "$CON_TYPE" == "buildah" ]]; then
${SUDO} buildah from --name=buildah-container python:2
fi
diff --git a/docs/podman_containers_module.html b/docs/podman_containers_module.html
index 4cd64e3..69804d6 100644
--- a/docs/podman_containers_module.html
+++ b/docs/podman_containers_module.html
@@ -119,7 +119,7 @@
- name: web
image: nginx
- name: test
- image: python:3-alpine
+ image: python:3.10-alpine
command: python -V
@@ -195,4 +195,4 @@