diff --git a/Dockerfile b/Dockerfile index c1285a1..60cdf66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Base image for Python 3.10 app with the following libraries and PyPI packages (that take quite a long time to compile): +# Base image for Python 3.x app with the following libraries and PyPI packages (that take quite a long time to compile): # * gevent # * cffi # * MySQL connector for mysqlclient @@ -6,7 +6,7 @@ # * rccsmin # https://hub.docker.com/_/python -FROM python:3.13.1-alpine +FROM python:3.14.0-alpine COPY requirements.txt /tmp/requirements.txt diff --git a/README.md b/README.md index a5393ea..d6707d9 100644 --- a/README.md +++ b/README.md @@ -8,32 +8,32 @@ Alpine-based docker image for running Python 3.x applications (with dependencies From [the GitHub's registry](https://github.com/pigs-will-fly/docker-python/pkgs/container/docker-python): ``` -docker pull ghcr.io/pigs-will-fly/docker-python:3.13.1 +docker pull ghcr.io/pigs-will-fly/docker-python:3.14.0 ``` ## What's inside? ``` $ python -V -Python 3.13.1 +Python 3.14.0 $ pip list Package Version -------------- ------------------ -cffi 1.17.1 +cffi 2.0.0 gevent 25.8.2 greenlet 3.2.4 msgspec 0.18.6+30.g595c33c mysqlclient 2.2.7 pip 25.2 -pycparser 2.22 +pycparser 2.23 rcssmin 1.2.1 regex 2025.9.1 setuptools 80.9.0 -zope.event 5.1.1 -zope.interface 7.2 +zope.event 6.0 +zope.interface 8.0.1 $ docker images | head -n2 REPOSITORY TAG IMAGE ID CREATED SIZE -pigs-will-fly/docker-python latest a6053962e0fd 1 second ago 119MB +pigs-will-fly/docker-python latest d92d1fbcd0cf 1 second ago 102MB ```