Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Use Python 3.9 in Synapse dockerfiles by default (#12112)
Browse files Browse the repository at this point in the history
  • Loading branch information
anoadragon453 committed Mar 1, 2022
1 parent 91bc15c commit f26e390
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/12112.docker
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Use Python 3.9 in Docker images by default.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
# There is an optional PYTHON_VERSION build argument which sets the
# version of python to build against: for example:
#
# DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile --build-arg PYTHON_VERSION=3.9 .
# DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile --build-arg PYTHON_VERSION=3.10 .
#

ARG PYTHON_VERSION=3.8
ARG PYTHON_VERSION=3.9

###
### Stage 0: builder
Expand Down

1 comment on commit f26e390

@melroy89
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's move to Python 3.10 please! This allow more advanced Python logging I really need.

Please sign in to comment.