Skip to content

Commit f74e9f8

Browse files
authored
Merge pull request #214 from infosiftr/bookworm
Update to Debian bookworm
2 parents 54990d4 + 37ba32b commit f74e9f8

File tree

12 files changed

+27
-25
lines changed

12 files changed

+27
-25
lines changed

2.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.2/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.4/Dockerfile

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.6/Dockerfile

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.7/Dockerfile

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.8/Dockerfile

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

2.9/Dockerfile

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

3.0/Dockerfile

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ RUN set -eux; \
140140
apt-mark auto '.*' > /dev/null; \
141141
[ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; \
142142
find /usr/local -type f -executable -exec ldd '{}' ';' \
143-
| awk '/=>/ { print $(NF-1) }' \
143+
| awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' \
144144
| sort -u \
145145
| xargs -r dpkg-query --search \
146146
| cut -d: -f1 \

versions.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,50 +7,50 @@
77
"version": "2.0.33"
88
},
99
"2.2": {
10-
"alpine": "3.19",
10+
"alpine": "3.16",
1111
"debian": "bullseye-slim",
1212
"sha256": "94b099e0142c3e5689b2a1a4943eafa02a453b342e6527cd108b722f8d0a82f6",
1313
"url": "https://www.haproxy.org/download/2.2/src/haproxy-2.2.31.tar.gz",
1414
"version": "2.2.31"
1515
},
1616
"2.4": {
1717
"alpine": "3.19",
18-
"debian": "bullseye-slim",
18+
"debian": "bookworm-slim",
1919
"sha256": "decc925111980792f32ecb8778b1105d7d4594880c75d4d973fc85214ad6a953",
2020
"url": "https://www.haproxy.org/download/2.4/src/haproxy-2.4.24.tar.gz",
2121
"version": "2.4.24"
2222
},
2323
"2.6": {
2424
"alpine": "3.19",
25-
"debian": "bullseye-slim",
25+
"debian": "bookworm-slim",
2626
"sha256": "41f8e1695e92fafdffe39690a68993f1a0f5f7f06931a99e9a153f749ea39cfd",
2727
"url": "https://www.haproxy.org/download/2.6/src/haproxy-2.6.15.tar.gz",
2828
"version": "2.6.15"
2929
},
3030
"2.7": {
3131
"alpine": "3.19",
32-
"debian": "bullseye-slim",
32+
"debian": "bookworm-slim",
3333
"sha256": "b064c5cd64615899ab39e518ff900b71c6e321d5f883d32dd871c31b372ebbc4",
3434
"url": "https://www.haproxy.org/download/2.7/src/haproxy-2.7.11.tar.gz",
3535
"version": "2.7.11"
3636
},
3737
"2.8": {
3838
"alpine": "3.19",
39-
"debian": "bullseye-slim",
39+
"debian": "bookworm-slim",
4040
"sha256": "3f5459c5a58e0b343a32eaef7ed5bed9d3fc29d8aa9e14b36c92c969fc2a60d9",
4141
"url": "https://www.haproxy.org/download/2.8/src/haproxy-2.8.5.tar.gz",
4242
"version": "2.8.5"
4343
},
4444
"2.9": {
4545
"alpine": "3.19",
46-
"debian": "bullseye-slim",
46+
"debian": "bookworm-slim",
4747
"sha256": "fba18acd1a46337fe20ae07c816c2496c8602b80a1bc9ff3768d4caa5fb80eab",
4848
"url": "https://www.haproxy.org/download/2.9/src/haproxy-2.9.0.tar.gz",
4949
"version": "2.9.0"
5050
},
5151
"3.0": {
5252
"alpine": "3.19",
53-
"debian": "bullseye-slim",
53+
"debian": "bookworm-slim",
5454
"sha256": "47c387d203ab00b5501017691f741375359a161216a84b17e55e48f2e84adc9f",
5555
"url": "https://www.haproxy.org/download/3.0/src/devel/haproxy-3.0-dev0.tar.gz",
5656
"version": "3.0-dev0"

versions.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ else
1212
fi
1313
versions=( "${versions[@]%/}" )
1414

15-
defaultDebianSuite='bullseye-slim'
15+
defaultDebianSuite='bookworm-slim'
1616
declare -A debianSuite=(
17+
[2.2]='bullseye-slim'
1718
[2.0]='buster-slim'
1819
)
1920
defaultAlpineVersion='3.19'
2021
declare -A alpineVersion=(
21-
# OpenSSL 3 incompatibilities
22+
# OpenSSL 3 incompatibilities (https://github.com/haproxy/haproxy/issues/1276)
23+
[2.2]='3.16'
2224
[2.0]='3.16'
2325
)
2426

0 commit comments

Comments
 (0)