diff options
| author | Ivan Gabaldon <igabaldon@inetol.net> | 2025-07-11 16:51:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-11 16:51:58 +0200 |
| commit | 9149175ff29afbba57fc899b1b555f70fa3b9d10 (patch) | |
| tree | 99fec72c6dec4ced1ca200c696f1f19b4e597f2e /.devcontainer/devcontainer.json | |
| parent | d8c74c830be9d01afc37d0096fe9ccb4458b8f3b (diff) | |
[fix] devcontainers: missing Valkey package (#4997)
Use specific branch as `valkey-server` package is only available in trixie and bookworm backports.
Reported https://github.com/searxng/searxng/discussions/4995
Closes https://github.com/searxng/searxng/issues/4996
Diffstat (limited to '.devcontainer/devcontainer.json')
| -rw-r--r-- | .devcontainer/devcontainer.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d14cef571..2193e09dc 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,8 @@ { "build": { + "args": { + "DEBIAN_CODENAME": "bookworm", + }, "dockerfile": "Dockerfile" }, "features": { |