Use Python 3.9 in Synapse dockerfiles by default (#12112)

This commit is contained in:
Andrew Morgan
2022-03-01 13:55:18 +00:00
committed by GitHub
parent 91bc15c772
commit f26e390a40
2 changed files with 3 additions and 2 deletions

View File

@@ -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