diff options
author | Jason Little <realtyem@gmail.com> | 2023-05-31 10:13:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 15:13:31 +0000 |
commit | 874378c0523bb82314434f1f0f2c5e1462a34a5b (patch) | |
tree | 1179bd0d6b0331e02b99aabca2714d71e5cffcb6 /scripts-dev/build_debian_packages.py | |
parent | Add get_canonical_room_alias to module API (#15450) (diff) | |
download | synapse-874378c0523bb82314434f1f0f2c5e1462a34a5b.tar.xz |
Docker fully qualified image names (#15689)
* Fully qualified docker image names for the main Dockerfile and Complement related. * Fully qualified docker image names for Dockerfiles associated with building Debian release artifacts. This one is harder and is separate from the other commit in case it wasn't correct or was unwanted. I decided to do the expansion on the docker images in the Dockerfile itself, instead of the various source places that build which distribution that is selected, as it would have been more invasive with the scripts breaking up the string for tagging and such. This one is untested. * Changelog * Update docker/Dockerfile-workers * Update docker/complement/Dockerfile --------- Co-authored-by: reivilibre <olivier@librepush.net>
Diffstat (limited to '')
-rwxr-xr-x | scripts-dev/build_debian_packages.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts-dev/build_debian_packages.py b/scripts-dev/build_debian_packages.py index ede7665011..4c9f134ddd 100755 --- a/scripts-dev/build_debian_packages.py +++ b/scripts-dev/build_debian_packages.py @@ -20,6 +20,8 @@ from concurrent.futures import ThreadPoolExecutor from types import FrameType from typing import Collection, Optional, Sequence, Set +# These are expanded inside the dockerfile to be a fully qualified image name. +# e.g. docker.io/library/debian:bullseye DISTS = ( "debian:buster", # oldstable: EOL 2022-08 "debian:bullseye", |