File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
PYTHON_IMPLEMENTATION = python
2
- PYTHON_VERSION = 3.10
2
+ PYTHON_VERSION = 3.12
3
3
MARIADB_VERSION = 10.5
4
4
MYSQL_VERSION = 8.0
5
5
ORACLE_VERSION = 23.5.0.0
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1.12
2
2
3
3
ARG PYTHON_IMPLEMENTATION=python
4
- ARG PYTHON_VERSION=3.10
4
+ ARG PYTHON_VERSION=3.12
5
5
FROM ${PYTHON_IMPLEMENTATION}:${PYTHON_VERSION}-slim-bookworm
6
6
7
7
LABEL org.opencontainers.image.authors="Django Software Foundation"
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ environment variables:
193
193
| ----------------------- | ------------- | ---------------------------------------------------- |
194
194
| ` DJANGO_PATH ` | ` ../django ` | Path to the Django repostory on your local machine |
195
195
| ` PYTHON_IMPLEMENTATION ` | ` python ` | Implementation of Python to use — ` python ` or ` pypy ` |
196
- | ` PYTHON_VERSION ` | ` 3.10 ` | Version of Python container image to use |
196
+ | ` PYTHON_VERSION ` | ` 3.12 ` | Version of Python container image to use |
197
197
198
198
The versions of various backend services can be switched by setting these environment variables:
199
199
@@ -212,7 +212,7 @@ The `PYTHON_VERSION` environment variable controls which version of Python you
212
212
are running the tests against, e.g.
213
213
214
214
``` console
215
- $ PYTHON_VERSION=3.10 docker compose run --rm sqlite
215
+ $ PYTHON_VERSION=3.12 docker compose run --rm sqlite
216
216
```
217
217
218
218
In addition, it's possible to select a different implementation of Python, i.e.
You can’t perform that action at this time.
0 commit comments