Skip to content

Commit

Permalink
Bump container os from buster to bookworm (#91)
Browse files Browse the repository at this point in the history
fixes #85
  • Loading branch information
fmoor committed Apr 24, 2024
1 parent 23cc0e4 commit 281f3c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:buster-slim
FROM debian:bookworm-slim
ARG version
ARG exact_version
ARG subdist
Expand Down Expand Up @@ -36,7 +36,7 @@ export DEBIAN_FRONTEND=noninteractive; \
&& curl --proto '=https' --tlsv1.2 -sSf \
-o /usr/local/share/keyrings/edgedb-keyring.gpg \
https://packages.edgedb.com/keys/edgedb-keyring.gpg \
&& echo "deb [signed-by=/usr/local/share/keyrings/edgedb-keyring.gpg] https://packages.edgedb.com/apt buster ${subdist:-main}" \
&& echo "deb [signed-by=/usr/local/share/keyrings/edgedb-keyring.gpg] https://packages.edgedb.com/apt bookworm ${subdist:-main}" \
> "/etc/apt/sources.list.d/edgedb.list" \
&& ( \
for i in $(seq 1 5); do [ $i -gt 1 ] && sleep 1; \
Expand Down
2 changes: 1 addition & 1 deletion tests/testbase.bash
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ latest_server_ver() {
local jq_query
local ver_key

dist="buster"
dist="bookworm"
subdist="${1:-nightly}"
if [ -n "${subdist}" ]; then
dist+=".${subdist}"
Expand Down

0 comments on commit 281f3c1

Please sign in to comment.