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

Use Python 3.9 in Synapse dockerfiles by default #12112

Merged
merged 3 commits into from
Mar 1, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/12112.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Use Python 3.9 in Docker images by default.
anoadragon453 marked this conversation as resolved.
Show resolved Hide resolved
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