Skip to content

Commit bcc293b

Browse files
authored
Dockerfile: use Python 3.13 (#111)
* Dockerfile: use Python 3.13 FROM python:3.13.0-alpine * Update README.md
1 parent 0930a3e commit bcc293b

2 files changed

Lines changed: 14 additions & 15 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# * rccsmin
77

88
# https://hub.docker.com/_/python
9-
FROM python:3.12.5-alpine
9+
FROM python:3.13.0-alpine
1010

1111
COPY requirements.txt /tmp/requirements.txt
1212

README.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,31 @@ Alpine-based docker image for running Python 3.x applications (with dependencies
88
From [the GitHub's registry](https://github.com/pigs-will-fly/docker-python/pkgs/container/docker-python):
99

1010
```
11-
docker pull ghcr.io/pigs-will-fly/docker-python:3.12.5
11+
docker pull ghcr.io/pigs-will-fly/docker-python:3.13.0
1212
```
1313

1414
## What's inside?
1515

1616
```
1717
$ python -V
18-
Python 3.12.5
18+
Python 3.13.0
1919
2020
$ pip list
2121
Package Version
2222
-------------- ---------
23-
cffi 1.17.0
24-
gevent 24.2.1
25-
greenlet 3.0.3
26-
mysqlclient 2.2.4
27-
pip 24.2
23+
cffi 1.17.1
24+
gevent 24.11.1
25+
greenlet 3.1.1
26+
mysqlclient 2.2.5
27+
pip 24.3.1
2828
pycparser 2.22
29-
rcssmin 1.1.2
30-
regex 2024.4.16
31-
setuptools 72.1.0
32-
wheel 0.44.0
29+
rcssmin 1.1.3
30+
regex 2024.11.6
31+
setuptools 75.4.0
3332
zope.event 5.0
34-
zope.interface 7.0.1
33+
zope.interface 7.1.1
3534
3635
$ docker images | head -n2
37-
REPOSITORY TAG IMAGE ID CREATED SIZE
38-
pigs-will-fly/docker-python latest ea8dadbcb848 1 second ago 123MB
36+
REPOSITORY TAG IMAGE ID CREATED SIZE
37+
pigs-will-fly/docker-python latest c94c5a7075da 1 second ago 137MB
3938
```

0 commit comments

Comments
 (0)