diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2022-03-01 13:55:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 13:55:18 +0000 |
commit | f26e390a40288be2801b3b9b3a99269b3f3ff81f (patch) | |
tree | 7d15e1adf1fc8fb58b3708e36b9c66b7311bdf6c /docker | |
parent | Add `stop_cancellation` utility function (#12106) (diff) | |
download | synapse-f26e390a40288be2801b3b9b3a99269b3f3ff81f.tar.xz |
Use Python 3.9 in Synapse dockerfiles by default (#12112)
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index e4c1c19b86..a8bb9b0e7f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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 |