1
0
Fork 0
mirror of https://github.com/element-hq/synapse.git synced 2025-03-31 03:45:13 +00:00

Dockerfile: set package arch via APT config option (#18271)

This commit is contained in:
Andrew Ferrazzutti 2025-03-25 09:58:40 -04:00 committed by GitHub
parent 92a29dcffc
commit bd08a01fc8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

1
changelog.d/18271.docker Normal file
View file

@ -0,0 +1 @@
Specify the architecture of installed packages via an APT config option, which is more reliable than appending package names with ":{arch}".

View file

@ -148,7 +148,7 @@ RUN \
for arch in arm64 amd64; do \
mkdir -p /tmp/debs-${arch} && \
cd /tmp/debs-${arch} && \
apt-get download $(sed "s/$/:${arch}/" /tmp/pkg-list); \
apt-get -o APT::Architecture="${arch}" download $(cat /tmp/pkg-list); \
done
# Extract the debs for each architecture